2017-02-07 04:59:30 +00:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2017-01-27 12:08:36 +00:00
|
|
|
|
|
2017-03-28 12:03:34 +00:00
|
|
|
|
using osu.Framework.Testing;
|
2017-01-27 12:08:36 +00:00
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
2017-01-27 12:57:22 +00:00
|
|
|
|
using osu.Game.Screens.Play;
|
2017-01-27 12:08:36 +00:00
|
|
|
|
|
|
|
|
|
namespace osu.Desktop.VisualTests.Tests
|
|
|
|
|
{
|
2017-03-07 01:59:19 +00:00
|
|
|
|
internal class TestCaseTwoLayerButton : TestCase
|
2017-01-27 12:08:36 +00:00
|
|
|
|
{
|
|
|
|
|
public override string Description => @"Back and skip and what not";
|
|
|
|
|
|
|
|
|
|
public override void Reset()
|
|
|
|
|
{
|
|
|
|
|
base.Reset();
|
|
|
|
|
|
|
|
|
|
Add(new BackButton());
|
|
|
|
|
Add(new SkipButton());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|