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

33 lines
878 B
C#
Raw Normal View History

2018-05-16 00:14:10 +00:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System;
using System.Collections.Generic;
2018-05-16 00:14:10 +00:00
using NUnit.Framework;
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
}
}
}