1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-06 23:37:20 +08:00
osu-lazer/osu.Game.Tests/Visual/Playlists/TestScenePlaylistsScreen.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
641 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-15 21:14:10 -03:00
2022-06-17 16:37:17 +09:00
#nullable disable
2018-05-15 21:14:10 -03:00
using NUnit.Framework;
namespace osu.Game.Tests.Visual.Playlists
2018-05-15 21:14:10 -03:00
{
[TestFixture]
public class TestScenePlaylistsScreen : ScreenTestScene
2018-05-15 21:14:10 -03:00
{
protected override bool UseOnlineAPI => true;
2019-07-31 22:44:44 +03:00
public TestScenePlaylistsScreen()
2018-05-15 21:14:10 -03:00
{
var multi = new Screens.OnlinePlay.Playlists.Playlists();
2018-05-15 21:20:34 -03:00
2020-08-20 21:01:58 +02:00
AddStep("show", () => LoadScreen(multi));
AddUntilStep("wait for loaded", () => multi.IsLoaded);
2018-05-15 21:14:10 -03:00
}
}
}