1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 16:07:24 +08:00
osu-lazer/osu.Game.Tests/Visual/Multiplayer/TestSceneMultiScreen.cs

28 lines
800 B
C#
Raw Normal View History

// 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;
using osu.Framework.Allocation;
using osu.Game.Overlays;
2020-12-25 12:11:21 +08:00
using osu.Game.Screens.Multi.Playlists;
2018-05-16 08:14:10 +08:00
2019-03-25 00:02:36 +08:00
namespace osu.Game.Tests.Visual.Multiplayer
2018-05-16 08:14:10 +08:00
{
[TestFixture]
public class TestSceneMultiScreen : ScreenTestScene
2018-05-16 08:14:10 +08:00
{
protected override bool UseOnlineAPI => true;
2019-08-01 03:44:44 +08:00
[Cached]
private MusicController musicController { get; set; } = new MusicController();
public TestSceneMultiScreen()
2018-05-16 08:14:10 +08:00
{
2020-12-25 12:11:21 +08:00
var multi = new PlaylistsMultiplayer();
2018-05-16 08:20:34 +08:00
2020-08-21 03:01:58 +08:00
AddStep("show", () => LoadScreen(multi));
AddUntilStep("wait for loaded", () => multi.IsLoaded);
2018-05-16 08:14:10 +08:00
}
}
}