1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 03:27:24 +08:00
osu-lazer/osu.Game.Rulesets.Osu.Tests/OsuDifficultyCalculatorTest.cs

27 lines
979 B
C#
Raw Normal View History

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;
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 14:10:47 +08:00
[TestCase(1.0736587013228804d, "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
2019-02-21 12:12:37 +08:00
protected override DifficultyCalculator CreateDifficultyCalculator(WorkingBeatmap beatmap) => new OsuDifficultyCalculator(new OsuRuleset(), beatmap);
2019-02-15 13:42:42 +08:00
protected override Ruleset CreateRuleset() => new OsuRuleset();
2019-02-14 15:22:14 +08:00
}
}