1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-06 15:57:19 +08:00

24 lines
640 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-02-17 18:59:30 +09:00
using osu.Framework.Screens.Testing;
2016-11-02 19:07:07 -04:00
using osu.Game.Overlays;
namespace osu.Desktop.VisualTests.Tests
{
class TestCaseOptions : TestCase
{
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();
}
}
}