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