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

49 lines
1.5 KiB
C#
Raw Normal View History

2019-09-12 10:53:18 +08:00
// 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 osu.Framework.Allocation;
2019-09-12 10:53:18 +08:00
using osu.Framework.Bindables;
using osu.Game.Overlays;
2019-09-12 10:53:18 +08:00
using osu.Game.Overlays.Rankings;
using osu.Game.Rulesets;
using osu.Game.Users;
namespace osu.Game.Tests.Visual.Online
{
public class TestSceneRankingsHeader : OsuTestScene
{
[Cached]
private readonly OverlayColourProvider overlayColour = new OverlayColourProvider(OverlayColourScheme.Green);
2019-09-12 10:53:18 +08:00
public TestSceneRankingsHeader()
{
var countryBindable = new Bindable<Country>();
var ruleset = new Bindable<RulesetInfo>();
var scope = new Bindable<RankingsScope>();
Add(new RankingsOverlayHeader
2019-09-12 10:53:18 +08:00
{
Current = { BindTarget = scope },
2019-09-12 10:53:18 +08:00
Country = { BindTarget = countryBindable },
Ruleset = { BindTarget = ruleset }
2019-09-12 10:53:18 +08:00
});
var country = new Country
{
FlagName = "BY",
FullName = "Belarus"
};
var unknownCountry = new Country
{
FlagName = "CK",
FullName = "Cook Islands"
};
2019-09-12 10:53:18 +08:00
AddStep("Set country", () => countryBindable.Value = country);
AddStep("Set scope to Score", () => scope.Value = RankingsScope.Score);
AddStep("Set country with no flag", () => countryBindable.Value = unknownCountry);
2019-09-12 10:53:18 +08:00
}
}
}