// Copyright (c) 2007-2018 ppy Pty Ltd . // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using System; using System.Collections.Generic; using NUnit.Framework; using OpenTK; using osu.Framework.Allocation; using osu.Framework.Graphics; using osu.Framework.Graphics.Containers; using osu.Game.Overlays; using osu.Game.Screens.Edit.Screens.Compose.Timeline; namespace osu.Game.Tests.Visual { [TestFixture] public class TestCaseEditorComposeTimeline : OsuTestCase { public override IReadOnlyList RequiredTypes => new[] { typeof(ScrollableTimeline), typeof(ScrollingTimelineContainer), typeof(BeatmapWaveformGraph), typeof(TimelineButton) }; private readonly ScrollableTimeline timeline; public TestCaseEditorComposeTimeline() { Children = new Drawable[] { new MusicController { Anchor = Anchor.TopCentre, Origin = Anchor.TopCentre, State = Visibility.Visible }, timeline = new ScrollableTimeline { Anchor = Anchor.Centre, Origin = Anchor.Centre, Size = new Vector2(1000, 100) } }; } [BackgroundDependencyLoader] private void load(OsuGameBase osuGame) { timeline.Beatmap.BindTo(osuGame.Beatmap); } } }