From 34fc740e1f72e6ec4b8f5865d0e2f008d2973a02 Mon Sep 17 00:00:00 2001 From: smoogipoo Date: Sat, 22 Dec 2018 14:48:15 +0900 Subject: [PATCH] Implement testcase for room settings --- .../Visual/TestCaseMatchSettingsOverlay.cs | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 osu.Game.Tests/Visual/TestCaseMatchSettingsOverlay.cs 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 + }; + } + } +}