1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-30 13:20:07 +08:00
osu-lazer/osu.Game.Rulesets.Osu.Tests/Mods/TestSceneOsuModMagnetised.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
783 B
C#
Raw Normal View History

2022-02-02 14:06:04 +08:00
// 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.
2022-06-17 15:37:17 +08:00
#nullable disable
2022-02-02 14:06:04 +08:00
using NUnit.Framework;
using osu.Game.Rulesets.Osu.Mods;
namespace osu.Game.Rulesets.Osu.Tests.Mods
{
public class TestSceneOsuModMagnetised : OsuModTestScene
2022-02-02 14:06:04 +08:00
{
2022-02-02 15:15:14 +08:00
[TestCase(0.1f)]
[TestCase(0.5f)]
[TestCase(1)]
public void TestMagnetised(float strength)
2022-02-02 14:06:04 +08:00
{
CreateModTest(new ModTestData
{
Mod = new OsuModMagnetised
2022-02-02 15:15:14 +08:00
{
AttractionStrength = { Value = strength },
2022-02-02 15:15:14 +08:00
},
PassCondition = () => true,
2022-02-02 14:06:04 +08:00
Autoplay = false,
});
}
}
}