1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 06:07:25 +08:00
osu-lazer/osu.Game.Tests/Visual/Online/TestSceneUserRanks.cs

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

51 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
2019-03-25 00:02:36 +08:00
using NUnit.Framework;
2020-01-27 17:55:19 +08:00
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Shapes;
using osu.Game.Graphics;
using osu.Game.Graphics.Containers;
using osu.Game.Online.API.Requests.Responses;
2020-01-27 17:55:19 +08:00
using osu.Game.Overlays;
using osu.Game.Overlays.Profile.Sections;
2018-04-13 17:19:50 +08:00
2019-03-25 00:02:36 +08:00
namespace osu.Game.Tests.Visual.Online
{
2018-03-02 14:34:31 +08:00
[TestFixture]
public class TestSceneUserRanks : OsuTestScene
{
protected override bool UseOnlineAPI => true;
2019-08-01 03:44:44 +08:00
2020-01-27 17:55:19 +08:00
[Cached]
private readonly OverlayColourProvider colourProvider = new OverlayColourProvider(OverlayColourScheme.Green);
public TestSceneUserRanks()
{
RanksSection ranks;
2018-04-13 17:19:50 +08:00
Add(new Container
{
RelativeSizeAxes = Axes.Both,
Children = new Drawable[]
{
new Box
{
RelativeSizeAxes = Axes.Both,
Colour = OsuColour.Gray(0.2f)
},
new OsuScrollContainer
{
RelativeSizeAxes = Axes.Both,
Child = ranks = new RanksSection(),
},
}
});
2018-04-13 17:19:50 +08:00
AddStep("Show cookiezi", () => ranks.User.Value = new APIUser { Id = 124493 });
}
}
}