osu/osu.Game.Tests/Visual/TestCaseMultiScreen.cs

34 lines
906 B
C#
Raw Normal View History

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
2018-05-16 00:14:10 +00:00
using System;
using System.Collections.Generic;
2018-05-16 00:14:10 +00:00
using NUnit.Framework;
2019-01-23 11:52:00 +00:00
using osu.Framework.Screens;
2018-05-16 00:14:10 +00:00
using osu.Game.Screens.Multi;
2018-12-10 10:20:41 +00:00
using osu.Game.Screens.Multi.Lounge;
using osu.Game.Screens.Multi.Lounge.Components;
2018-05-16 00:14:10 +00:00
namespace osu.Game.Tests.Visual
{
[TestFixture]
public class TestCaseMultiScreen : OsuTestCase
{
public override IReadOnlyList<Type> RequiredTypes => new[]
{
typeof(Multiplayer),
2018-12-26 11:05:57 +00:00
typeof(LoungeSubScreen),
typeof(FilterControl)
};
2018-05-16 00:14:10 +00:00
public TestCaseMultiScreen()
{
2018-05-16 00:20:34 +00:00
Multiplayer multi = new Multiplayer();
AddStep(@"show", () => Add(multi));
AddWaitStep(5);
AddStep(@"exit", multi.Exit);
2018-05-16 00:14:10 +00:00
}
}
}