1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-06 12:17:46 +08:00

moved the location of the tests

This commit is contained in:
OliBomby 2022-09-13 01:38:29 +02:00
parent 718f8c4ee2
commit a1f4724685

View File

@ -4,14 +4,18 @@
using System.Linq; using System.Linq;
using NUnit.Framework; using NUnit.Framework;
using osu.Game.Beatmaps; using osu.Game.Beatmaps;
using osu.Game.Rulesets;
using osu.Game.Rulesets.Osu;
using osu.Game.Rulesets.Osu.Objects; using osu.Game.Rulesets.Osu.Objects;
using osu.Game.Tests.Beatmaps; using osu.Game.Tests.Beatmaps;
using osuTK.Input; using osuTK.Input;
namespace osu.Game.Rulesets.Osu.Tests.Editor namespace osu.Game.Tests.Visual.Editing
{ {
public class TestSceneSelectionBlueprintDeselection : TestSceneOsuEditor public class TestSceneSelectionBlueprintDeselection : EditorTestScene
{ {
protected override Ruleset CreateEditorRuleset() => new OsuRuleset();
protected override IBeatmap CreateBeatmap(RulesetInfo ruleset) => new TestBeatmap(ruleset, false); protected override IBeatmap CreateBeatmap(RulesetInfo ruleset) => new TestBeatmap(ruleset, false);
[Test] [Test]