Add test coverage

This commit is contained in:
Dean Herbert 2022-02-02 15:06:04 +09:00
parent e7d72f1823
commit 104256a054
1 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,23 @@
// 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 TestSceneOsuModAimAssist : OsuModTestScene
{
[Test]
public void TestAimAssist()
{
var mod = new OsuModAimAssist();
CreateModTest(new ModTestData
{
Autoplay = false,
Mod = mod,
});
}
}
}