osukey/osu.Desktop.Tests/Visual/TestCaseKeyConfiguration.cs
2017-08-16 17:24:01 +09:00

24 lines
682 B
C#

// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
namespace osu.Desktop.Tests.Visual
{
public class TestCaseKeyConfiguration : OsuTestCase
{
private readonly KeyConfigurationOverlay configuration;
public override string Description => @"Key configuration";
public TestCaseKeyConfiguration()
{
Child = configuration = new KeyConfigurationOverlay();
}
protected override void LoadComplete()
{
base.LoadComplete();
configuration.Show();
}
}
}