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
|
|
|
|
|
|
|
|
|
using NUnit.Framework;
|
2020-08-20 19:03:27 +00:00
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Game.Overlays;
|
2018-05-16 00:14:10 +00:00
|
|
|
|
|
2020-12-25 04:20:37 +00:00
|
|
|
|
namespace osu.Game.Tests.Visual.Playlists
|
2018-05-16 00:14:10 +00:00
|
|
|
|
{
|
|
|
|
|
[TestFixture]
|
2020-12-25 04:20:37 +00:00
|
|
|
|
public class TestScenePlaylistsScreen : 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
|
|
|
|
|
2020-08-20 19:03:27 +00:00
|
|
|
|
[Cached]
|
|
|
|
|
private MusicController musicController { get; set; } = new MusicController();
|
|
|
|
|
|
2020-12-25 04:20:37 +00:00
|
|
|
|
public TestScenePlaylistsScreen()
|
2018-05-16 00:14:10 +00:00
|
|
|
|
{
|
2020-12-25 15:50:00 +00:00
|
|
|
|
var multi = new Screens.OnlinePlay.Playlists.Playlists();
|
2018-05-16 00:20:34 +00:00
|
|
|
|
|
2020-08-20 19:01:58 +00:00
|
|
|
|
AddStep("show", () => LoadScreen(multi));
|
|
|
|
|
AddUntilStep("wait for loaded", () => multi.IsLoaded);
|
2018-05-16 00:14:10 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|