1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 00:47:24 +08:00
osu-lazer/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.5 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 17:19:50 +08:00
2018-03-02 14:34:31 +08:00
using NUnit.Framework;
using osu.Framework.Allocation;
2017-11-23 05:00:17 +08: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;
using osu.Game.Overlays.Profile;
2017-11-23 05:00:17 +08:00
using osu.Game.Overlays.Profile.Sections;
2022-12-31 00:53:50 +08:00
using osu.Game.Rulesets.Osu;
2018-04-13 17:19:50 +08:00
2019-03-25 00:02:36 +08:00
namespace osu.Game.Tests.Visual.Online
2017-11-23 05:00:17 +08:00
{
2018-03-02 14:34:31 +08:00
[TestFixture]
public partial class TestSceneHistoricalSection : OsuTestScene
2017-11-23 05:00:17 +08:00
{
protected override bool UseOnlineAPI => true;
2019-08-01 03:44:44 +08:00
[Cached]
2020-01-30 12:11:35 +08:00
private readonly OverlayColourProvider colourProvider = new OverlayColourProvider(OverlayColourScheme.Pink);
public TestSceneHistoricalSection()
2017-11-23 05:00:17 +08:00
{
HistoricalSection section;
2018-04-13 17:19:50 +08:00
2017-11-23 05:00:17 +08:00
Add(new Box
{
RelativeSizeAxes = Axes.Both,
Colour = OsuColour.Gray(0.2f)
});
2018-04-13 17:19:50 +08:00
Add(new OsuScrollContainer
2017-11-23 05:00:17 +08:00
{
RelativeSizeAxes = Axes.Both,
Child = section = new HistoricalSection(),
});
2018-04-13 17:19:50 +08:00
AddStep("Show peppy", () => section.User.Value = new UserProfileData(new APIUser { Id = 2 }, new OsuRuleset().RulesetInfo));
AddStep("Show WubWoofWolf", () => section.User.Value = new UserProfileData(new APIUser { Id = 39828 }, new OsuRuleset().RulesetInfo));
2017-11-23 05:00:17 +08:00
}
}
}