1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-24 00:47:26 +08:00
osu-lazer/osu.Desktop.VisualTests/Tests/TestCaseMedalOverlay.cs

27 lines
738 B
C#
Raw Normal View History

2017-06-01 15:45:46 +08:00
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Framework.Testing;
using osu.Game.Overlays;
using osu.Game.Users;
namespace osu.Desktop.VisualTests.Tests
{
internal class TestCaseMedalOverlay : TestCase
{
public override string Description => @"medal get!";
public override void Reset()
{
base.Reset();
Add(new MedalOverlay(new Medal
2017-06-01 15:45:46 +08:00
{
Name = @"Animations",
InternalName = @"all-intro-doubletime",
2017-06-01 15:45:46 +08:00
Description = @"More complex than you think.",
}));
}
}
}