|
9 | 9 | using osu.Game.Rulesets.Mania.Mods; |
10 | 10 | using osu.Game.Rulesets.Mania.Objects; |
11 | 11 | using osu.Game.Rulesets.Mania.Replays; |
12 | | -using osu.Game.Rulesets.Mods; |
13 | 12 | using osu.Game.Rulesets.Objects; |
14 | 13 | using osu.Game.Rulesets.Objects.Types; |
15 | 14 | using osu.Game.Rulesets.Scoring; |
@@ -521,14 +520,13 @@ public void TestHitWindowTreatmentWithScoreV2(float overallDifficulty, double hi |
521 | 520 | ScoreInfo = new ScoreInfo |
522 | 521 | { |
523 | 522 | Ruleset = CreateRuleset().RulesetInfo, |
524 | | - Mods = [new ModScoreV2()] |
| 523 | + Mods = [new ManiaModScoreV2()] |
525 | 524 | } |
526 | 525 | }; |
527 | 526 |
|
528 | 527 | RunTest($@"SV2 single note @ OD{overallDifficulty}", beatmap, $@"SV2 {hitOffset}ms @ OD{overallDifficulty} = {expectedResult}", score, [expectedResult]); |
529 | 528 | } |
530 | 529 |
|
531 | | - [Ignore("Tests expected to fail until stable's detailed treatment of hit windows in mania is reproduced.")] |
532 | 530 | [TestCaseSource(nameof(score_v1_non_convert_test_cases))] |
533 | 531 | public void TestHitWindowTreatmentWithScoreV1NonConvert(float overallDifficulty, double hitOffset, HitResult expectedResult) |
534 | 532 | { |
@@ -556,7 +554,6 @@ public void TestHitWindowTreatmentWithScoreV1NonConvert(float overallDifficulty, |
556 | 554 | RunTest($@"SV1 single note @ OD{overallDifficulty}", beatmap, $@"SV1 {hitOffset}ms @ OD{overallDifficulty} = {expectedResult}", score, [expectedResult]); |
557 | 555 | } |
558 | 556 |
|
559 | | - [Ignore("Tests expected to fail until stable's detailed treatment of hit windows in mania is reproduced.")] |
560 | 557 | [TestCaseSource(nameof(score_v1_convert_test_cases))] |
561 | 558 | public void TestHitWindowTreatmentWithScoreV1Convert(float overallDifficulty, double hitOffset, HitResult expectedResult) |
562 | 559 | { |
@@ -585,7 +582,6 @@ public void TestHitWindowTreatmentWithScoreV1Convert(float overallDifficulty, do |
585 | 582 | RunTest($@"SV1 convert single note @ OD{overallDifficulty}", beatmap, $@"SV1 convert {hitOffset}ms @ OD{overallDifficulty} = {expectedResult}", score, [expectedResult]); |
586 | 583 | } |
587 | 584 |
|
588 | | - [Ignore("Tests expected to fail until stable's detailed treatment of hit windows in mania is reproduced.")] |
589 | 585 | [TestCaseSource(nameof(score_v1_non_convert_hard_rock_test_cases))] |
590 | 586 | public void TestHitWindowTreatmentWithScoreV1AndHardRockNonConvert(float overallDifficulty, double hitOffset, HitResult expectedResult) |
591 | 587 | { |
@@ -614,7 +610,6 @@ public void TestHitWindowTreatmentWithScoreV1AndHardRockNonConvert(float overall |
614 | 610 | RunTest($@"SV1+HR single note @ OD{overallDifficulty}", beatmap, $@"SV1+HR {hitOffset}ms @ OD{overallDifficulty} = {expectedResult}", score, [expectedResult]); |
615 | 611 | } |
616 | 612 |
|
617 | | - [Ignore("Tests expected to fail until stable's detailed treatment of hit windows in mania is reproduced.")] |
618 | 613 | [TestCaseSource(nameof(score_v1_non_convert_easy_test_cases))] |
619 | 614 | public void TestHitWindowTreatmentWithScoreV1AndEasyNonConvert(float overallDifficulty, double hitOffset, HitResult expectedResult) |
620 | 615 | { |
@@ -643,7 +638,6 @@ public void TestHitWindowTreatmentWithScoreV1AndEasyNonConvert(float overallDiff |
643 | 638 | RunTest($@"SV1+EZ single note @ OD{overallDifficulty}", beatmap, $@"SV1+EZ {hitOffset}ms @ OD{overallDifficulty} = {expectedResult}", score, [expectedResult]); |
644 | 639 | } |
645 | 640 |
|
646 | | - [Ignore("Tests expected to fail until stable's detailed treatment of hit windows in mania is reproduced.")] |
647 | 641 | [TestCaseSource(nameof(score_v1_non_convert_double_time_test_cases))] |
648 | 642 | public void TestHitWindowTreatmentWithScoreV1AndDoubleTimeNonConvert(float overallDifficulty, double hitOffset, HitResult expectedResult) |
649 | 643 | { |
@@ -672,7 +666,6 @@ public void TestHitWindowTreatmentWithScoreV1AndDoubleTimeNonConvert(float overa |
672 | 666 | RunTest($@"SV1+DT single note @ OD{overallDifficulty}", beatmap, $@"SV1+DT {hitOffset}ms @ OD{overallDifficulty} = {expectedResult}", score, [expectedResult]); |
673 | 667 | } |
674 | 668 |
|
675 | | - [Ignore("Tests expected to fail until stable's detailed treatment of hit windows in mania is reproduced.")] |
676 | 669 | [TestCaseSource(nameof(score_v1_non_convert_half_time_test_cases))] |
677 | 670 | public void TestHitWindowTreatmentWithScoreV1AndHalfTimeNonConvert(float overallDifficulty, double hitOffset, HitResult expectedResult) |
678 | 671 | { |
|
0 commit comments