2019-01-24 17:43:03 +09:00
|
|
|
|
// 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-15 21:14:10 -03:00
|
|
|
|
|
2018-12-03 17:50:39 +09:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2018-05-15 21:14:10 -03:00
|
|
|
|
using NUnit.Framework;
|
|
|
|
|
using osu.Game.Screens.Multi;
|
2018-12-10 19:20:41 +09:00
|
|
|
|
using osu.Game.Screens.Multi.Lounge;
|
|
|
|
|
using osu.Game.Screens.Multi.Lounge.Components;
|
2018-05-15 21:14:10 -03:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Tests.Visual
|
|
|
|
|
{
|
|
|
|
|
[TestFixture]
|
2019-02-15 17:01:06 +09:00
|
|
|
|
public class TestCaseMultiScreen : ScreenTestCase
|
2018-05-15 21:14:10 -03:00
|
|
|
|
{
|
2018-12-03 17:50:39 +09:00
|
|
|
|
public override IReadOnlyList<Type> RequiredTypes => new[]
|
|
|
|
|
{
|
|
|
|
|
typeof(Multiplayer),
|
2018-12-26 20:05:57 +09:00
|
|
|
|
typeof(LoungeSubScreen),
|
2018-12-03 17:50:39 +09:00
|
|
|
|
typeof(FilterControl)
|
|
|
|
|
};
|
|
|
|
|
|
2018-05-15 21:14:10 -03:00
|
|
|
|
public TestCaseMultiScreen()
|
|
|
|
|
{
|
2018-05-15 21:20:34 -03:00
|
|
|
|
Multiplayer multi = new Multiplayer();
|
|
|
|
|
|
2019-02-15 17:01:06 +09:00
|
|
|
|
AddStep(@"show", () => LoadScreen(multi));
|
2018-05-15 21:14:10 -03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|