osu/osu.Game.Rulesets.Osu.Tests/OsuDifficultyCalculatorTest.cs

27 lines
979 B
C#
Raw Normal View History

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;
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.9311451172608853d, "diffcalc-test")]
2019-07-05 06:10:47 +00:00
[TestCase(1.0736587013228804d, "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
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
}
}