Add instructions for test 764; remove automated test that did nothing;

This commit is contained in:
E.Z. Hart 2019-01-03 15:37:36 -07:00
Родитель f325eb36f0
Коммит 93520dfbe1
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 1196DD903A2F7606
1 изменённых файлов: 6 добавлений и 15 удалений

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

@ -15,9 +15,12 @@ namespace Xamarin.Forms.Controls.Issues
[Issue (IssueTracker.Github, 764, "Keyboard does not dismiss on SearchBar", PlatformAffected.Android)]
public class Issue764 : TestContentPage
{
protected override void Init ()
{
var instructions = new Label { Text = "Tap the SearchBar. Type something into it with the software " +
"keyboard. Tap the 'Search' button on the keyboard. The software keyboard should be dismissed. If " +
"the software keyboard is still visible, this test has failed." };
Title = "Issue 764";
var searchBar = new SearchBar {
@ -33,24 +36,12 @@ namespace Xamarin.Forms.Controls.Issues
var layout = new StackLayout {
Children = {
searchBar,
label
label,
instructions
}
};
Content = layout;
}
// Issue 416
// NavigationBar should be visible in modal
#if UITEST
[Test]
[Category(UITestCategories.ManualReview)]
public void Issue764TestsKeyboardDismissedForEnter ()
{
Assert.Inconclusive ("Needs test");
}
#endif
}
}