mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 13:47:38 +08:00
30 lines
932 B
C#
30 lines
932 B
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 NUnit.Framework;
|
|
using osu.Framework.Utils;
|
|
using osu.Game.Rulesets.Osu.Mods;
|
|
|
|
namespace osu.Game.Rulesets.Osu.Tests.Mods
|
|
{
|
|
public 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)
|
|
});
|
|
}
|
|
}
|
|
}
|