osu/osu.Desktop.VisualTests/Tests/TestCaseBeatmapOptionsOverl...

25 lines
680 B
C#
Raw Normal View History

2017-03-02 12:40:55 +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
using osu.Framework.Screens.Testing;
2017-03-03 01:24:34 +00:00
using osu.Game.Screens.Select.Options;
2017-03-02 12:40:55 +00:00
2017-03-07 01:59:19 +00:00
namespace osu.Desktop.VisualTests.Tests
2017-03-02 12:40:55 +00:00
{
2017-03-07 01:59:19 +00:00
internal class TestCaseBeatmapOptionsOverlay : TestCase
2017-03-02 12:40:55 +00:00
{
public override string Description => @"Beatmap options in song select";
public override void Reset()
{
base.Reset();
var overlay = new BeatmapOptionsOverlay();
2017-03-02 12:40:55 +00:00
Add(overlay);
AddButton(@"Toggle", overlay.ToggleVisibility);
}
}
}