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

36 lines
1.0 KiB
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.
2019-10-20 14:32:49 +00:00
using System;
using System.Collections.Generic;
2019-10-09 07:06:16 +00:00
using NUnit.Framework;
using osu.Framework.Allocation;
using osu.Game.Rulesets.Osu;
using osu.Game.Screens.Edit.Timing;
namespace osu.Game.Tests.Visual.Editor
{
[TestFixture]
public class TestSceneTimingScreen : EditorClockTestScene
{
2019-10-20 14:32:49 +00:00
public override IReadOnlyList<Type> RequiredTypes => new[]
{
typeof(ControlPointTable),
2019-10-20 14:42:13 +00:00
typeof(ControlPointSettings),
typeof(Section<>),
typeof(TimingSection),
typeof(EffectSection),
typeof(SampleSection),
typeof(DifficultySection),
2019-10-20 14:32:49 +00:00
typeof(RowAttribute)
};
2019-10-09 07:06:16 +00:00
[BackgroundDependencyLoader]
private void load()
{
Beatmap.Value = CreateWorkingBeatmap(new OsuRuleset().RulesetInfo);
Child = new TimingScreen();
}
}
}