TestCase -> TestScene

This commit is contained in:
Dean Herbert
2019-06-14 17:25:07 +09:00
parent 9818637b8d
commit d4ff9dc833
14 changed files with 18 additions and 18 deletions

View File

@ -0,0 +1,15 @@
// 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 osu.Game.Tournament.Screens.Groupings;
namespace osu.Game.Tournament.Tests
{
public class TestSceneGroupingsEditorScreen : LadderTestScene
{
public TestSceneGroupingsEditorScreen()
{
Add(new GroupingsEditorScreen());
}
}
}