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

56 lines
1.8 KiB
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-12-20 14:17:33 +08:00
2020-12-18 13:58:58 +08:00
using NUnit.Framework;
2018-12-20 14:17:33 +08:00
using osu.Game.Beatmaps;
2020-12-25 12:38:11 +08:00
using osu.Game.Online.Rooms;
2018-12-20 14:17:33 +08:00
using osu.Game.Rulesets.Osu;
using osu.Game.Rulesets.Osu.Mods;
using osu.Game.Screens.OnlinePlay.Match.Components;
2021-06-24 15:29:06 +08:00
using osu.Game.Tests.Visual.OnlinePlay;
2020-02-14 19:07:52 +08:00
using osu.Game.Users;
2018-12-20 14:17:33 +08:00
2019-03-25 00:02:36 +08:00
namespace osu.Game.Tests.Visual.Multiplayer
2018-12-20 14:17:33 +08:00
{
public class TestSceneMatchHeader : OnlinePlayTestScene
2018-12-20 14:17:33 +08:00
{
2020-12-18 13:58:58 +08:00
[SetUp]
public new void Setup() => Schedule(() =>
{
2021-06-29 14:39:01 +08:00
SelectedRoom.Value = new Room
2018-12-20 14:17:33 +08:00
{
2021-06-29 14:39:01 +08:00
Name = { Value = "A very awesome room" },
Host = { Value = new User { Id = 2, Username = "peppy" } },
Playlist =
2018-12-20 14:17:33 +08:00
{
2021-06-29 14:39:01 +08:00
new PlaylistItem
2018-12-22 13:12:27 +08:00
{
2021-06-29 14:39:01 +08:00
Beatmap =
{
2021-06-29 14:39:01 +08:00
Value = new BeatmapInfo
{
2021-06-29 14:39:01 +08:00
Metadata = new BeatmapMetadata
{
Title = "Title",
Artist = "Artist",
AuthorString = "Author",
},
Version = "Version",
Ruleset = new OsuRuleset().RulesetInfo
}
},
RequiredMods =
{
new OsuModDoubleTime(),
new OsuModNoFail(),
new OsuModRelax(),
}
}
2021-06-29 14:39:01 +08:00
}
};
2018-12-20 14:17:33 +08:00
2021-06-29 14:39:01 +08:00
Child = new Header();
});
2018-12-20 14:17:33 +08:00
}
}