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