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.
|
|
|
|
|
|
|
|
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";
|
|
|
|
|
2021-11-12 13:00:36 +08:00
|
|
|
[TestCase(6.6972307565739273d, "diffcalc-test")]
|
|
|
|
[TestCase(1.4484754139145539d, "zero-length-sliders")]
|
2019-02-15 13:42:52 +08:00
|
|
|
public void Test(double expected, string name)
|
2019-02-15 14:49:51 +08:00
|
|
|
=> base.Test(expected, name);
|
2019-02-14 15:22:14 +08:00
|
|
|
|
2021-11-12 13:00:36 +08:00
|
|
|
[TestCase(8.9382559208689809d, "diffcalc-test")]
|
|
|
|
[TestCase(1.7548875851757628d, "zero-length-sliders")]
|
2021-02-20 13:27:58 +08:00
|
|
|
public void TestClockRateAdjusted(double expected, string name)
|
|
|
|
=> Test(expected, name, new OsuModDoubleTime());
|
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|