Move skip button into its own test, because it is no longer two-layered

This commit is contained in:
Thomas Müller
2017-06-03 17:33:24 +02:00
parent 900e3ce3e2
commit 8cd2f509ef
3 changed files with 23 additions and 3 deletions

View File

@ -3,20 +3,18 @@
using osu.Framework.Testing;
using osu.Game.Graphics.UserInterface;
using osu.Game.Screens.Play;
namespace osu.Desktop.VisualTests.Tests
{
internal class TestCaseTwoLayerButton : TestCase
{
public override string Description => @"Back and skip and what not";
public override string Description => @"Mostly back button";
public override void Reset()
{
base.Reset();
Add(new BackButton());
Add(new SkipButton(Clock.CurrentTime + 5000));
}
}
}