Add instructions to manual UI test

This commit is contained in:
E.Z. Hart 2019-01-02 18:40:48 -07:00
Родитель 4bab273f46
Коммит 18372359e4
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 1196DD903A2F7606
1 изменённых файлов: 9 добавлений и 3 удалений

Просмотреть файл

@ -12,9 +12,12 @@ namespace Xamarin.Forms.Controls.Issues
{ {
public Issue214 () public Issue214 ()
{ {
var instructions = new Label { Text = "The text of each item should be visually distinct from the " +
"detail of each item. If both typefaces are identical, this test has failed." };
var items = Enumerable.Range (0, 50).Select (i => new TextCell { var items = Enumerable.Range (0, 50).Select (i => new TextCell {
Text = i.ToString (), Text = "Text" + i.ToString (),
Detail = i.ToString () Detail = "Detail" + i.ToString ()
}).ToList (); }).ToList ();
var tableSection = new TableSection("First Section"); var tableSection = new TableSection("First Section");
@ -31,7 +34,10 @@ namespace Xamarin.Forms.Controls.Issues
}; };
tableLayout.Intent = TableIntent.Data; tableLayout.Intent = TableIntent.Data;
Content = tableLayout; Content = new StackLayout
{
Children = { instructions, tableLayout }
};
} }
} }
} }