// Copyright (c) 2007-2018 ppy Pty Ltd . // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using System; using System.Collections.Generic; using System.Linq; using NUnit.Framework; using osu.Framework.Graphics; using osu.Game.Overlays.Profile.Header; using osu.Game.Users; namespace osu.Game.Tests.Visual { [TestFixture] public class TestCaseBadgeContainer : OsuTestCase { public override IReadOnlyList RequiredTypes => new[] { typeof(BadgeContainer) }; public TestCaseBadgeContainer() { BadgeContainer badgeContainer; Child = badgeContainer = new BadgeContainer { RelativeSizeAxes = Axes.Both }; AddStep("Show 1 badge", () => badgeContainer.ShowBadges(new[] { new Badge { AwardedAt = DateTimeOffset.Now, Description = "Appreciates compasses", ImageUrl = "https://assets.ppy.sh/profile-badges/mg2018-1star.png", } })); AddStep("Show 2 badges", () => badgeContainer.ShowBadges(new[] { new Badge { AwardedAt = DateTimeOffset.Now, Description = "Contributed to osu!lazer testing", ImageUrl = "https://assets.ppy.sh/profile-badges/contributor.png", }, new Badge { AwardedAt = DateTimeOffset.Now, Description = "Appreciates compasses", ImageUrl = "https://assets.ppy.sh/profile-badges/mg2018-1star.png", } })); AddStep("Show many badges", () => badgeContainer.ShowBadges(Enumerable.Range(1, 20).Select(i => new Badge { AwardedAt = DateTimeOffset.Now, Description = $"Contributed to osu!lazer testing {i} times", ImageUrl = "https://assets.ppy.sh/profile-badges/contributor.jpg", }).ToArray())); } } }