1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-09 21:27:18 +08:00

24 lines
641 B
C#
Raw Normal View History

// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2016-11-02 19:07:07 -04:00
2017-03-28 21:03:34 +09:00
using osu.Framework.Testing;
2016-11-02 19:07:07 -04:00
using osu.Game.Overlays;
namespace osu.Desktop.VisualTests.Tests
{
2017-03-07 10:59:19 +09:00
internal class TestCaseOptions : TestCase
2016-11-02 19:07:07 -04:00
{
public override string Description => @"Tests the options overlay";
2016-11-02 22:22:34 -04:00
private OptionsOverlay options;
2016-11-02 19:07:07 -04:00
public override void Reset()
{
base.Reset();
2016-11-02 22:22:34 -04:00
Children = new[] { options = new OptionsOverlay() };
2016-11-02 19:07:07 -04:00
options.ToggleVisibility();
}
}
}