mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 01:07:24 +08:00
40 lines
1.7 KiB
C#
40 lines
1.7 KiB
C#
// 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.
|
|
|
|
#nullable disable
|
|
|
|
using NUnit.Framework;
|
|
using osu.Game.Beatmaps;
|
|
using osu.Game.Rulesets.Difficulty;
|
|
using osu.Game.Rulesets.Osu.Difficulty;
|
|
using osu.Game.Rulesets.Osu.Mods;
|
|
using osu.Game.Tests.Beatmaps;
|
|
|
|
namespace osu.Game.Rulesets.Osu.Tests
|
|
{
|
|
[TestFixture]
|
|
public class OsuDifficultyCalculatorTest : DifficultyCalculatorTest
|
|
{
|
|
protected override string ResourceAssembly => "osu.Game.Rulesets.Osu";
|
|
|
|
[TestCase(6.7115569159190587d, 206, "diffcalc-test")]
|
|
[TestCase(1.4391311903612753d, 45, "zero-length-sliders")]
|
|
public void Test(double expectedStarRating, int expectedMaxCombo, string name)
|
|
=> base.Test(expectedStarRating, expectedMaxCombo, name);
|
|
|
|
[TestCase(8.9757300665532966d, 206, "diffcalc-test")]
|
|
[TestCase(1.7437232654020756d, 45, "zero-length-sliders")]
|
|
public void TestClockRateAdjusted(double expectedStarRating, int expectedMaxCombo, string name)
|
|
=> Test(expectedStarRating, expectedMaxCombo, name, new OsuModDoubleTime());
|
|
|
|
[TestCase(6.7115569159190587d, 239, "diffcalc-test")]
|
|
[TestCase(1.4391311903612753d, 54, "zero-length-sliders")]
|
|
public void TestClassicMod(double expectedStarRating, int expectedMaxCombo, string name)
|
|
=> Test(expectedStarRating, expectedMaxCombo, name, new OsuModClassic());
|
|
|
|
protected override DifficultyCalculator CreateDifficultyCalculator(IWorkingBeatmap beatmap) => new OsuDifficultyCalculator(new OsuRuleset().RulesetInfo, beatmap);
|
|
|
|
protected override Ruleset CreateRuleset() => new OsuRuleset();
|
|
}
|
|
}
|