Fix mode cycling and add test coverage

This commit is contained in:
Dean Herbert
2022-06-11 21:36:41 +09:00
parent 0c333e5c08
commit 8d53ed64a3
2 changed files with 8 additions and 1 deletions

View File

@ -30,6 +30,12 @@ namespace osu.Game.Tests.Visual.Settings
AddStep("set visual mode to circles", () => latencyCertifier.VisualMode.Value = LatencyVisualMode.CircleGameplay);
}
[Test]
public void TestCycleVisualModes()
{
AddRepeatStep("cycle mode", () => InputManager.Key(Key.Space), 6);
}
[Test]
public void TestCertification()
{