2019-02-14 15:22:14 +08:00
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2019-02-14 15:22:14 +08:00
|
|
|
using NUnit.Framework;
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
using osu.Game.Rulesets.Difficulty;
|
|
|
|
using osu.Game.Rulesets.Osu.Difficulty;
|
2021-02-20 13:27:58 +08:00
|
|
|
using osu.Game.Rulesets.Osu.Mods;
|
2019-02-14 15:22:14 +08:00
|
|
|
using osu.Game.Tests.Beatmaps;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu.Tests
|
|
|
|
{
|
|
|
|
[TestFixture]
|
|
|
|
public class OsuDifficultyCalculatorTest : DifficultyCalculatorTest
|
|
|
|
{
|
|
|
|
protected override string ResourceAssembly => "osu.Game.Rulesets.Osu";
|
|
|
|
|
2022-08-11 18:47:32 +08:00
|
|
|
[TestCase(6.7115569159190587d, 206, "diffcalc-test")]
|
|
|
|
[TestCase(1.4391311903612753d, 45, "zero-length-sliders")]
|
2022-01-23 11:25:22 +08:00
|
|
|
public void Test(double expectedStarRating, int expectedMaxCombo, string name)
|
|
|
|
=> base.Test(expectedStarRating, expectedMaxCombo, name);
|
2019-02-14 15:22:14 +08:00
|
|
|
|
2022-08-11 18:47:32 +08:00
|
|
|
[TestCase(8.9757300665532966d, 206, "diffcalc-test")]
|
|
|
|
[TestCase(1.7437232654020756d, 45, "zero-length-sliders")]
|
2022-01-23 11:25:22 +08:00
|
|
|
public void TestClockRateAdjusted(double expectedStarRating, int expectedMaxCombo, string name)
|
|
|
|
=> Test(expectedStarRating, expectedMaxCombo, name, new OsuModDoubleTime());
|
|
|
|
|
2022-08-11 18:47:32 +08:00
|
|
|
[TestCase(6.7115569159190587d, 239, "diffcalc-test")]
|
|
|
|
[TestCase(1.4391311903612753d, 54, "zero-length-sliders")]
|
2022-01-23 11:25:22 +08:00
|
|
|
public void TestClassicMod(double expectedStarRating, int expectedMaxCombo, string name)
|
|
|
|
=> Test(expectedStarRating, expectedMaxCombo, name, new OsuModClassic());
|
2021-02-20 13:27:58 +08:00
|
|
|
|
2021-11-15 17:42:47 +08:00
|
|
|
protected override DifficultyCalculator CreateDifficultyCalculator(IWorkingBeatmap beatmap) => new OsuDifficultyCalculator(new OsuRuleset().RulesetInfo, beatmap);
|
2019-02-15 13:42:42 +08:00
|
|
|
|
|
|
|
protected override Ruleset CreateRuleset() => new OsuRuleset();
|
2019-02-14 15:22:14 +08:00
|
|
|
}
|
|
|
|
}
|