osu/osu.Game.Tests/Visual/Editing/TestSceneTimingScreen.cs

34 lines
1001 B
C#
Raw Normal View History

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;
using osu.Game.Rulesets.Edit;
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;
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))]
[Cached(typeof(IBeatSnapProvider))]
2020-02-04 03:23:02 +00:00
private readonly EditorBeatmap editorBeatmap;
public TestSceneTimingScreen()
{
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();
}
}
}