Path: blob/master/osu.Game.Rulesets.Osu.Tests/Mods/TestSceneOsuModDoubleTime.cs
2264 views
// Copyright (c) ppy Pty Ltd <[email protected]>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using NUnit.Framework; using osu.Framework.Utils; using osu.Game.Rulesets.Osu.Mods; namespace osu.Game.Rulesets.Osu.Tests.Mods { public partial class TestSceneOsuModDoubleTime : OsuModTestScene { [TestCase(0.5)] [TestCase(1.01)] [TestCase(1.5)] [TestCase(2)] [TestCase(5)] public void TestSpeedChangeCustomisation(double rate) { var mod = new OsuModDoubleTime { SpeedChange = { Value = rate } }; CreateModTest(new ModTestData { Mod = mod, PassCondition = () => Player.ScoreProcessor.JudgedHits >= 2 && Precision.AlmostEquals(Player.GameplayClockContainer.Rate, mod.SpeedChange.Value) }); } } }