1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-30 13:30:05 +08:00
osu-lazer/osu.Game.Tests/Visual/TestCaseChangelog.cs

33 lines
948 B
C#
Raw Normal View History

2018-07-17 05:50:22 +08:00
// Copyright(c) 2007-2018 ppy Pty Ltd<contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using NUnit.Framework;
using osu.Game.Overlays;
namespace osu.Game.Tests.Visual
{
[TestFixture]
public class TestCaseChangelog : OsuTestCase
{
private ChangelogOverlay changelog;
protected override void LoadComplete()
{
base.LoadComplete();
Add(changelog = new ChangelogOverlay());
2018-07-17 21:01:53 +08:00
AddStep(@"Show", changelog.Show);
AddStep(@"Stable Release Stream", () => changelog.header.ShowReleaseStream("Stable", "Stable 20180626.1"));
AddStep(@"Lazer Release Stream", () => changelog.header.ShowReleaseStream("Lazer", "Lazer 2018.713.1"));
AddStep(@"Listing", changelog.header.ActivateListing);
2018-07-17 05:50:22 +08:00
}
public TestCaseChangelog()
{
}
}
}