mirror of https://github.com/ppy/osu
Reword test steps for consistency & fix typo
This commit is contained in:
parent
fbf3a09835
commit
a8e96b3994
|
@ -64,17 +64,17 @@ public void TestHitLighting(bool enable)
|
|||
{
|
||||
AddStep("create catcher", () => createCatcher(5));
|
||||
|
||||
AddStep("Toggle hit lighting", () => config.Set(OsuSetting.HitLighting, enable));
|
||||
AddStep("Catch fruit", () => catchFruit(new TestFruit(false)
|
||||
AddStep("toggle hit lighting", () => config.Set(OsuSetting.HitLighting, enable));
|
||||
AddStep("catch fruit", () => catchFruit(new TestFruit(false)
|
||||
{
|
||||
X = catcher.X
|
||||
}));
|
||||
AddStep("Catch fruit last combo", () => catchFruit(new TestFruit(false)
|
||||
AddStep("catch fruit last in combo", () => catchFruit(new TestFruit(false)
|
||||
{
|
||||
X = catcher.X,
|
||||
LastInCombo = true
|
||||
}));
|
||||
AddAssert("Check hit explotion", () => catcher.ChildrenOfType<HitExplosion>().Any() == enable);
|
||||
AddAssert("check hit explosion", () => catcher.ChildrenOfType<HitExplosion>().Any() == enable);
|
||||
}
|
||||
|
||||
private void catchFruit(Fruit fruit, bool miss = false)
|
||||
|
|
Loading…
Reference in New Issue