1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 18:47:27 +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.

28 lines
772 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.
using NUnit.Framework;
using osu.Game.Rulesets.Osu.Mods;
namespace osu.Game.Rulesets.Osu.Tests.Mods
{
public partial 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,
});
}
}
}