public void SelectFromSuggestionList() { textBox.Enter("h"); SuggestionList suggestionList = textBox.SuggestionList; suggestionList.Select("hello"); Assert.AreEqual("hello", textBox.Text); }
void SelectFromSuggestionList() { var textBox = MainWindow.Get <WinFormTextBox>("TextBox"); textBox.Enter("h"); SuggestionList suggestionList = textBox.SuggestionList; suggestionList.Select("hello"); Assert.Equal("hello", textBox.Text); }