1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-13 08:32:57 +08:00

Create Test Scene

This commit is contained in:
Mk-56spn 2022-09-09 23:13:19 +02:00
parent e416c87970
commit cb17fb2091

View File

@ -0,0 +1,27 @@
// 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.Rulesets.Osu.Mods;
namespace osu.Game.Rulesets.Osu.Tests.Mods
{
public class TestSceneOsuModFreezeFrame : OsuModTestScene
{
[TestCase(0.5f)]
[TestCase(1)]
[TestCase(2)]
public void TestFreezeFrequency(float beatMeasure)
{
CreateModTest(new ModTestData
{
Mod = new OsuModFreezeFrame
{
BeatDivisor = { Value = beatMeasure }
},
PassCondition = () => true,
Autoplay = true
});
}
}
}