mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 13:47:38 +08:00
35 lines
1.1 KiB
C#
35 lines
1.1 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 NUnit.Framework;
|
|
using osu.Framework.Audio;
|
|
using osu.Framework.Bindables;
|
|
using osu.Framework.Timing;
|
|
using osu.Game.Screens.Play;
|
|
|
|
namespace osu.Game.Tests.NonVisual
|
|
{
|
|
[TestFixture]
|
|
public partial class GameplayClockContainerTest
|
|
{
|
|
[TestCase(0)]
|
|
[TestCase(1)]
|
|
public void TestTrueGameplayRateWithGameplayAdjustment(double underlyingClockRate)
|
|
{
|
|
var framedClock = new FramedClock(new ManualClock { Rate = underlyingClockRate });
|
|
var gameplayClock = new TestGameplayClockContainer(framedClock);
|
|
|
|
Assert.That(gameplayClock.GetTrueGameplayRate(), Is.EqualTo(2));
|
|
}
|
|
|
|
private partial class TestGameplayClockContainer : GameplayClockContainer
|
|
{
|
|
public TestGameplayClockContainer(IFrameBasedClock underlyingClock)
|
|
: base(underlyingClock)
|
|
{
|
|
AdjustmentsFromMods.AddAdjustment(AdjustableProperty.Frequency, new BindableDouble(2.0));
|
|
}
|
|
}
|
|
}
|
|
}
|