osu/osu.Game.Tests/Visual/Gameplay/TestSceneMedalOverlay.cs

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

27 lines
763 B
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
2018-03-02 06:34:31 +00:00
using NUnit.Framework;
2017-09-18 13:32:49 +00:00
using osu.Game.Overlays;
using osu.Game.Users;
2018-04-13 09:19:50 +00:00
2019-03-24 16:02:36 +00:00
namespace osu.Game.Tests.Visual.Gameplay
2017-09-18 13:32:49 +00:00
{
2018-03-02 06:34:31 +00:00
[TestFixture]
public partial class TestSceneMedalOverlay : OsuTestScene
2017-09-18 13:32:49 +00:00
{
public TestSceneMedalOverlay()
2017-09-18 13:32:49 +00:00
{
AddStep(@"display", () =>
{
LoadComponentAsync(new MedalOverlay(new Medal
{
Name = @"Animations",
InternalName = @"all-intro-doubletime",
Description = @"More complex than you think.",
}), Add);
});
}
}
}