2019-01-24 08:43:03 +00: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-16 00:14:10 +00:00
|
|
|
|
|
2018-12-03 08:50:39 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2018-05-16 00:14:10 +00:00
|
|
|
|
using NUnit.Framework;
|
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
|
|
|
|
|
2019-03-24 16:02:36 +00:00
|
|
|
|
namespace osu.Game.Tests.Visual.Multiplayer
|
2018-05-16 00:14:10 +00:00
|
|
|
|
{
|
|
|
|
|
[TestFixture]
|
2019-05-14 19:37:25 +00:00
|
|
|
|
public class TestSceneMultiScreen : ScreenTestScene
|
2018-05-16 00:14:10 +00:00
|
|
|
|
{
|
2019-09-13 08:15:33 +00:00
|
|
|
|
protected override bool UseOnlineAPI => true;
|
2019-07-31 19:44:44 +00:00
|
|
|
|
|
2018-12-03 08:50:39 +00:00
|
|
|
|
public override IReadOnlyList<Type> RequiredTypes => new[]
|
|
|
|
|
{
|
2019-03-24 16:02:36 +00:00
|
|
|
|
typeof(Screens.Multi.Multiplayer),
|
2018-12-26 11:05:57 +00:00
|
|
|
|
typeof(LoungeSubScreen),
|
2018-12-03 08:50:39 +00:00
|
|
|
|
typeof(FilterControl)
|
|
|
|
|
};
|
|
|
|
|
|
2019-05-14 19:37:25 +00:00
|
|
|
|
public TestSceneMultiScreen()
|
2018-05-16 00:14:10 +00:00
|
|
|
|
{
|
2019-03-24 16:02:36 +00:00
|
|
|
|
Screens.Multi.Multiplayer multi = new Screens.Multi.Multiplayer();
|
2018-05-16 00:20:34 +00:00
|
|
|
|
|
2019-02-15 08:01:06 +00:00
|
|
|
|
AddStep(@"show", () => LoadScreen(multi));
|
2018-05-16 00:14:10 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|