mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 10:07:52 +08:00
Add failing test case
This commit is contained in:
parent
2be989b9f5
commit
22cfc86050
@ -40,8 +40,15 @@ namespace osu.Game.Tests.Visual.Settings
|
|||||||
AddStep("change value from default", () => textBox.Current.Value = "non-default");
|
AddStep("change value from default", () => textBox.Current.Value = "non-default");
|
||||||
AddUntilStep("restore button shown", () => revertToDefaultButton.Alpha > 0);
|
AddUntilStep("restore button shown", () => revertToDefaultButton.Alpha > 0);
|
||||||
|
|
||||||
|
AddStep("disable setting", () => textBox.Current.Disabled = true);
|
||||||
|
AddUntilStep("restore button still shown", () => revertToDefaultButton.Alpha > 0);
|
||||||
|
|
||||||
|
AddStep("enable setting", () => textBox.Current.Disabled = false);
|
||||||
AddStep("restore default", () => textBox.Current.SetDefault());
|
AddStep("restore default", () => textBox.Current.SetDefault());
|
||||||
AddUntilStep("restore button hidden", () => revertToDefaultButton.Alpha == 0);
|
AddUntilStep("restore button hidden", () => revertToDefaultButton.Alpha == 0);
|
||||||
|
|
||||||
|
AddStep("disable setting", () => textBox.Current.Disabled = true);
|
||||||
|
AddUntilStep("restore button still hidden", () => revertToDefaultButton.Alpha == 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
|
Loading…
Reference in New Issue
Block a user