mirror of
https://github.com/ppy/osu.git
synced 2025-01-28 07:23:14 +08:00
Add test coverage
This commit is contained in:
parent
d8962ddff8
commit
e8394e6f74
@ -542,6 +542,11 @@ namespace osu.Game.Tests.Visual.UserInterface
|
||||
|
||||
AddStep("press enter", () => InputManager.Key(Key.Enter));
|
||||
AddAssert("hidden selected", () => getPanelForMod(typeof(OsuModHidden)).Active.Value);
|
||||
AddAssert("all text selected in textbox", () =>
|
||||
{
|
||||
var textBox = modSelectOverlay.ChildrenOfType<SearchTextBox>().Single();
|
||||
return textBox.SelectedText == textBox.Text;
|
||||
});
|
||||
|
||||
AddStep("press enter again", () => InputManager.Key(Key.Enter));
|
||||
AddAssert("hidden deselected", () => !getPanelForMod(typeof(OsuModHidden)).Active.Value);
|
||||
|
Loading…
Reference in New Issue
Block a user