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