1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 11:37:28 +08:00
osu-lazer/osu.Game.Rulesets.Osu.Tests/TestCaseEditor.cs

18 lines
434 B
C#
Raw Normal View History

// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using NUnit.Framework;
2018-03-13 14:57:05 +08:00
using osu.Game.Tests.Visual;
namespace osu.Game.Rulesets.Osu.Tests
{
[TestFixture]
2018-03-13 14:57:05 +08:00
public class TestCaseEditor : EditorTestCase
{
public TestCaseEditor()
: base(new OsuRuleset())
{
}
}
}