2019-01-24 16:43:03 +08:00
|
|
|
|
// 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 17:19:50 +08:00
|
|
|
|
|
2019-06-03 12:37:29 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using NUnit.Framework;
|
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Game.Overlays;
|
2019-06-03 12:37:29 +08:00
|
|
|
|
using osu.Game.Overlays.Settings;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-03-25 00:02:36 +08:00
|
|
|
|
namespace osu.Game.Tests.Visual.Settings
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
[TestFixture]
|
2019-06-03 12:37:29 +08:00
|
|
|
|
public class TestSceneSettingsPanel : OsuTestScene
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-05-14 09:45:05 +08:00
|
|
|
|
private readonly SettingsPanel settings;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
private readonly DialogOverlay dialogOverlay;
|
|
|
|
|
|
2019-06-03 12:37:29 +08:00
|
|
|
|
public override IReadOnlyList<Type> RequiredTypes => new[]
|
|
|
|
|
{
|
|
|
|
|
typeof(SettingsFooter),
|
|
|
|
|
typeof(SettingsOverlay),
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
public TestSceneSettingsPanel()
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-05-14 09:45:05 +08:00
|
|
|
|
settings = new SettingsOverlay
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
State = Visibility.Visible
|
|
|
|
|
};
|
|
|
|
|
Add(dialogOverlay = new DialogOverlay
|
|
|
|
|
{
|
|
|
|
|
Depth = -1
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load()
|
|
|
|
|
{
|
2018-06-06 19:25:40 +08:00
|
|
|
|
Dependencies.Cache(dialogOverlay);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
Add(settings);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|