1
0
mirror of https://github.com/ppy/osu.git synced 2024-10-02 01:17:24 +08:00
osu-lazer/osu.Desktop.Tests/Visual/TestCaseSettings.cs

26 lines
696 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-03 07:07:07 +08:00
using osu.Game.Overlays;
namespace osu.Desktop.Tests.Visual
2016-11-03 07:07:07 +08:00
{
internal class TestCaseSettings : OsuTestCase
2016-11-03 07:07:07 +08:00
{
public override string Description => @"Tests the settings overlay";
2016-11-03 07:07:07 +08:00
2017-07-08 17:17:47 +08:00
private readonly SettingsOverlay settings;
2016-11-03 07:07:07 +08:00
public TestCaseSettings()
2016-11-03 07:07:07 +08:00
{
2017-08-10 21:21:22 +08:00
Children = new[] { settings = new MainSettings() };
}
protected override void LoadComplete()
{
base.LoadComplete();
settings.ToggleVisibility();
2016-11-03 07:07:07 +08:00
}
}
}