2018-05-16 08:14:10 +08:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
2018-12-03 16:50:39 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2018-05-16 08:14:10 +08:00
|
|
|
|
using NUnit.Framework;
|
|
|
|
|
using osu.Game.Screens.Multi;
|
2018-12-10 18:20:41 +08:00
|
|
|
|
using osu.Game.Screens.Multi.Lounge;
|
|
|
|
|
using osu.Game.Screens.Multi.Lounge.Components;
|
2018-05-16 08:14:10 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Tests.Visual
|
|
|
|
|
{
|
|
|
|
|
[TestFixture]
|
|
|
|
|
public class TestCaseMultiScreen : OsuTestCase
|
|
|
|
|
{
|
2018-12-03 16:50:39 +08:00
|
|
|
|
public override IReadOnlyList<Type> RequiredTypes => new[]
|
|
|
|
|
{
|
|
|
|
|
typeof(Multiplayer),
|
2018-12-10 18:20:41 +08:00
|
|
|
|
typeof(LoungeScreen),
|
2018-12-03 16:50:39 +08:00
|
|
|
|
typeof(FilterControl)
|
|
|
|
|
};
|
|
|
|
|
|
2018-05-16 08:14:10 +08:00
|
|
|
|
public TestCaseMultiScreen()
|
|
|
|
|
{
|
2018-05-16 08:20:34 +08:00
|
|
|
|
Multiplayer multi = new Multiplayer();
|
|
|
|
|
|
|
|
|
|
AddStep(@"show", () => Add(multi));
|
|
|
|
|
AddWaitStep(5);
|
|
|
|
|
AddStep(@"exit", multi.Exit);
|
2018-05-16 08:14:10 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|