1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 20:47:28 +08:00
osu-lazer/osu.Game.Tests/Visual/Playlists/TestScenePlaylistsScreen.cs
2023-06-24 01:00:03 +09:00

22 lines
630 B
C#

// 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.
using NUnit.Framework;
namespace osu.Game.Tests.Visual.Playlists
{
[TestFixture]
public partial class TestScenePlaylistsScreen : ScreenTestScene
{
protected override bool UseOnlineAPI => true;
public TestScenePlaylistsScreen()
{
var multi = new Screens.OnlinePlay.Playlists.Playlists();
AddStep("show", () => LoadScreen(multi));
AddUntilStep("wait for loaded", () => multi.IsLoaded);
}
}
}