2019-02-14 16:22:14 +09: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 16:27:58 +11:00
|
|
|
using osu.Game.Rulesets.Osu.Mods;
|
2019-02-14 16:22:14 +09: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-03-23 15:38:00 +09:00
|
|
|
[TestCase(6.9311451172574934d, "diffcalc-test")]
|
|
|
|
[TestCase(1.0736586907780401d, "zero-length-sliders")]
|
2019-02-15 14:42:52 +09:00
|
|
|
public void Test(double expected, string name)
|
2019-02-15 15:49:51 +09:00
|
|
|
=> base.Test(expected, name);
|
2019-02-14 16:22:14 +09:00
|
|
|
|
2021-03-26 11:47:41 +09:00
|
|
|
[TestCase(8.7212283220412345d, "diffcalc-test")]
|
|
|
|
[TestCase(1.3212137158641493d, "zero-length-sliders")]
|
2021-02-20 16:27:58 +11:00
|
|
|
public void TestClockRateAdjusted(double expected, string name)
|
|
|
|
=> Test(expected, name, new OsuModDoubleTime());
|
|
|
|
|
2019-02-21 13:12:37 +09:00
|
|
|
protected override DifficultyCalculator CreateDifficultyCalculator(WorkingBeatmap beatmap) => new OsuDifficultyCalculator(new OsuRuleset(), beatmap);
|
2019-02-15 14:42:42 +09:00
|
|
|
|
|
|
|
protected override Ruleset CreateRuleset() => new OsuRuleset();
|
2019-02-14 16:22:14 +09:00
|
|
|
}
|
|
|
|
}
|