Initial groups implementation.

This commit is contained in:
smoogipooo
2017-02-27 14:19:07 +09:00
parent 0c2089ddd7
commit 25a1c7a8ad
8 changed files with 344 additions and 1 deletions

View File

@ -0,0 +1,23 @@
using osu.Framework.Screens.Testing;
using osu.Game.Screens.Tournament;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace osu.Desktop.VisualTests.Tests
{
class TestCaseDrawings : TestCase
{
public override string Name => @"Drawings";
public override string Description => "Tournament drawings";
public override void Reset()
{
base.Reset();
Add(new Drawings());
}
}
}

View File

@ -176,6 +176,7 @@
<Compile Include="Benchmark.cs" />
<Compile Include="Program.cs" />
<Compile Include="Tests\TestCaseChatDisplay.cs" />
<Compile Include="Tests\TestCaseDrawings.cs" />
<Compile Include="Tests\TestCaseGamefield.cs" />
<Compile Include="Tests\TestCaseMusicController.cs" />
<Compile Include="Tests\TestCaseNotificationManager.cs" />