Add test coverage of object-object snapping

This commit is contained in:
Dean Herbert
2020-09-24 14:46:03 +09:00
parent d9e8ac6842
commit 1a98e8d715
2 changed files with 69 additions and 2 deletions

View File

@ -0,0 +1,14 @@
// 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.Tests.Visual;
namespace osu.Game.Rulesets.Osu.Tests.Editor
{
[TestFixture]
public class TestSceneOsuEditor : EditorTestScene
{
protected override Ruleset CreateEditorRuleset() => new OsuRuleset();
}
}