// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using NUnit.Framework; using osu.Framework.Allocation; using osu.Framework.Graphics.Containers; using osu.Game.Overlays; namespace osu.Game.Tests.Visual { [TestFixture] public class TestCaseSettings : OsuTestCase { private readonly SettingsOverlay settings; private readonly DialogOverlay dialogOverlay; public TestCaseSettings() { settings = new MainSettings { State = Visibility.Visible }; Add(dialogOverlay = new DialogOverlay { Depth = -1 }); } [BackgroundDependencyLoader] private void load() { Dependencies.Cache(dialogOverlay); Add(settings); } } }