2019-10-09 07:06:16 +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.
|
|
|
|
|
|
|
|
using NUnit.Framework;
|
|
|
|
using osu.Framework.Allocation;
|
2020-07-17 05:38:28 +00:00
|
|
|
using osu.Game.Rulesets.Edit;
|
2020-09-30 07:06:58 +00:00
|
|
|
using osu.Game.Rulesets.Osu;
|
2020-01-01 16:23:21 +00:00
|
|
|
using osu.Game.Rulesets.Osu.Beatmaps;
|
|
|
|
using osu.Game.Screens.Edit;
|
2019-10-09 07:06:16 +00:00
|
|
|
using osu.Game.Screens.Edit.Timing;
|
|
|
|
|
2020-04-23 08:07:55 +00:00
|
|
|
namespace osu.Game.Tests.Visual.Editing
|
2019-10-09 07:06:16 +00:00
|
|
|
{
|
|
|
|
[TestFixture]
|
|
|
|
public class TestSceneTimingScreen : EditorClockTestScene
|
|
|
|
{
|
2020-01-01 16:23:21 +00:00
|
|
|
[Cached(typeof(EditorBeatmap))]
|
2020-07-17 05:38:28 +00:00
|
|
|
[Cached(typeof(IBeatSnapProvider))]
|
2020-02-04 03:23:02 +00:00
|
|
|
private readonly EditorBeatmap editorBeatmap;
|
|
|
|
|
|
|
|
public TestSceneTimingScreen()
|
|
|
|
{
|
2020-09-30 07:06:58 +00:00
|
|
|
editorBeatmap = new EditorBeatmap(CreateBeatmap(new OsuRuleset().RulesetInfo));
|
2020-02-04 03:23:02 +00:00
|
|
|
}
|
2020-01-01 16:23:21 +00:00
|
|
|
|
2019-10-09 07:06:16 +00:00
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load()
|
|
|
|
{
|
2020-01-01 16:23:21 +00:00
|
|
|
Beatmap.Value = CreateWorkingBeatmap(editorBeatmap.PlayableBeatmap);
|
2019-10-09 07:06:16 +00:00
|
|
|
Child = new TimingScreen();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|