1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-09 12:10:29 +08:00

Bring back test coverage for fail case from #16475

It was inadvertently dropped during refactoring in
b185194d07f0ff1e6ebe7eafb796a85491fab118.
This commit is contained in:
Bartłomiej Dach 2023-07-15 18:15:42 +02:00
parent 3e91d30825
commit 542916f857
No known key found for this signature in database

View File

@ -75,6 +75,25 @@ namespace osu.Game.Rulesets.Taiko.Tests.Judgements
AssertResult<DrumRoll>(0, HitResult.IgnoreHit);
}
[Test]
public void TestHitNoneStrongDrumRoll()
{
PerformTest(new List<ReplayFrame>
{
new TaikoReplayFrame(0),
}, CreateBeatmap(createDrumRoll(true)));
AssertJudgementCount(12);
for (int i = 0; i < 5; ++i)
{
AssertResult<DrumRollTick>(i, HitResult.IgnoreMiss);
AssertResult<DrumRollTick.StrongNestedHit>(i, HitResult.IgnoreMiss);
}
AssertResult<DrumRoll>(0, HitResult.IgnoreHit);
}
[Test]
public void TestHitAllStrongDrumRollWithOneKey()
{