osu/osu.Game.Tests/Visual/Online/TestSceneHistoricalSection.cs

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

47 lines
1.4 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-04-13 09:19:50 +00:00
2022-06-17 07:37:17 +00:00
#nullable disable
2018-03-02 06:34:31 +00:00
using NUnit.Framework;
using osu.Framework.Allocation;
2017-11-22 21:00:17 +00:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Shapes;
using osu.Game.Graphics;
using osu.Game.Graphics.Containers;
using osu.Game.Online.API.Requests.Responses;
using osu.Game.Overlays;
2017-11-22 21:00:17 +00:00
using osu.Game.Overlays.Profile.Sections;
2018-04-13 09:19:50 +00:00
2019-03-24 16:02:36 +00:00
namespace osu.Game.Tests.Visual.Online
2017-11-22 21:00:17 +00:00
{
2018-03-02 06:34:31 +00:00
[TestFixture]
public class TestSceneHistoricalSection : OsuTestScene
2017-11-22 21:00:17 +00:00
{
protected override bool UseOnlineAPI => true;
2019-07-31 19:44:44 +00:00
[Cached]
2020-01-30 04:11:35 +00:00
private readonly OverlayColourProvider colourProvider = new OverlayColourProvider(OverlayColourScheme.Pink);
public TestSceneHistoricalSection()
2017-11-22 21:00:17 +00:00
{
HistoricalSection section;
2018-04-13 09:19:50 +00:00
2017-11-22 21:00:17 +00:00
Add(new Box
{
RelativeSizeAxes = Axes.Both,
Colour = OsuColour.Gray(0.2f)
});
2018-04-13 09:19:50 +00:00
Add(new OsuScrollContainer
2017-11-22 21:00:17 +00:00
{
RelativeSizeAxes = Axes.Both,
Child = section = new HistoricalSection(),
});
2018-04-13 09:19:50 +00:00
AddStep("Show peppy", () => section.User.Value = new APIUser { Id = 2 });
AddStep("Show WubWoofWolf", () => section.User.Value = new APIUser { Id = 39828 });
2017-11-22 21:00:17 +00:00
}
}
}