mirror of https://github.com/ppy/osu
Add test steps for testing combo reset to 0
This commit is contained in:
parent
ce7af0df63
commit
675e32df57
|
@ -35,6 +35,7 @@ public void TestHitAnimationSlow()
|
|||
|
||||
AddStep("Set 50 combo", () => gameplayState.ScoreProcessor.Combo.Value = 50);
|
||||
addHitSteps();
|
||||
AddStep("Reset combo", () => gameplayState.ScoreProcessor.Combo.Value = 0);
|
||||
}
|
||||
|
||||
[Test]
|
||||
|
@ -44,6 +45,7 @@ public void TestHitAnimationFast()
|
|||
|
||||
AddStep("Set 150 combo", () => gameplayState.ScoreProcessor.Combo.Value = 150);
|
||||
addHitSteps();
|
||||
AddStep("Reset combo", () => gameplayState.ScoreProcessor.Combo.Value = 0);
|
||||
}
|
||||
|
||||
private void addHitSteps()
|
||||
|
|
Loading…
Reference in New Issue