diff --git a/osu.Game.Tests/Visual/TestCaseMatchSettingsOverlay.cs b/osu.Game.Tests/Visual/TestCaseMatchSettingsOverlay.cs new file mode 100644 index 0000000000..dd5d242f56 --- /dev/null +++ b/osu.Game.Tests/Visual/TestCaseMatchSettingsOverlay.cs @@ -0,0 +1,22 @@ +// Copyright (c) 2007-2018 ppy Pty Ltd . +// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE + +using osu.Framework.Graphics; +using osu.Framework.Graphics.Containers; +using osu.Game.Online.Multiplayer; +using osu.Game.Screens.Multi.Match.Components; + +namespace osu.Game.Tests.Visual +{ + public class TestCaseMatchSettingsOverlay : OsuTestCase + { + public TestCaseMatchSettingsOverlay() + { + Child = new RoomSettingsOverlay(new Room()) + { + RelativeSizeAxes = Axes.Both, + State = Visibility.Visible + }; + } + } +}