mirror of
https://github.com/ppy/osu
synced 2024-12-11 17:42:28 +00:00
33 lines
1.0 KiB
C#
33 lines
1.0 KiB
C#
// 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 System.Diagnostics;
|
|
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";
|
|
|
|
[Test]
|
|
public new void Test()
|
|
{
|
|
base.Test(6.9311449688341344, "diffcalc-test");
|
|
}
|
|
|
|
private void openUsingShellExecute(string path) => Process.Start(new ProcessStartInfo
|
|
{
|
|
FileName = path,
|
|
UseShellExecute = true //see https://github.com/dotnet/corefx/issues/10361
|
|
});
|
|
|
|
protected override DifficultyCalculator CreateDifficultyCalculator(WorkingBeatmap beatmap) => new OsuDifficultyCalculator(new OsuRuleset(), beatmap);
|
|
}
|
|
}
|