osu/osu.Desktop.VisualTests/Tests/TestCaseSettings.cs

27 lines
731 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 23:07:07 +00:00
2017-03-28 12:03:34 +00:00
using osu.Framework.Testing;
2016-11-02 23:07:07 +00:00
using osu.Game.Overlays;
namespace osu.Desktop.VisualTests.Tests
{
internal class TestCaseSettings : TestCase
2016-11-02 23:07:07 +00:00
{
public override string Description => @"Tests the settings overlay";
2016-11-02 23:07:07 +00:00
2017-07-08 09:17:47 +00:00
private readonly SettingsOverlay settings;
2016-11-02 23:07:07 +00:00
public TestCaseSettings()
2016-11-02 23:07:07 +00:00
{
Children = new[] { settings = new SettingsOverlay() };
}
protected override void LoadComplete()
{
base.LoadComplete();
settings.ToggleVisibility();
2016-11-02 23:07:07 +00:00
}
}
}