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