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/Playlists/TestScenePlaylistsParticipantsList.cs

64 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.
using NUnit.Framework;
using osu.Framework.Graphics;
using osu.Game.Screens.OnlinePlay.Components;
2020-12-18 14:11:11 +08:00
using osu.Game.Users;
namespace osu.Game.Tests.Visual.Playlists
{
public class TestScenePlaylistsParticipantsList : OsuTestScene
{
private TestRoomContainer roomContainer;
2020-12-18 13:58:58 +08:00
[SetUp]
public void Setup() => Schedule(() =>
2020-12-18 13:58:58 +08:00
{
Child = roomContainer = new TestRoomContainer
{
Room = { RoomID = { Value = 7 } }
};
2020-12-18 14:11:11 +08:00
for (int i = 0; i < 50; i++)
{
roomContainer.Room.RecentParticipants.Add(new User
2020-12-18 14:11:11 +08:00
{
Username = "peppy",
Statistics = new UserStatistics { GlobalRank = 1234 },
2020-12-18 14:11:11 +08:00
Id = 2
});
}
2020-12-18 13:58:58 +08:00
});
2020-12-18 14:11:11 +08:00
[Test]
public void TestHorizontalLayout()
{
AddStep("create component", () =>
{
roomContainer.Child = new ParticipantsDisplay(Direction.Horizontal)
2020-12-18 14:11:11 +08:00
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Width = 0.2f,
};
});
}
[Test]
public void TestVerticalLayout()
{
AddStep("create component", () =>
{
roomContainer.Child = new ParticipantsDisplay(Direction.Vertical)
2020-12-18 14:11:11 +08:00
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Width = 0.2f,
Height = 0.2f,
};
});
}
}
}