1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-06 08:22:56 +08:00

Move drawable instatiation to [SetUp]

This commit is contained in:
Bartłomiej Dach 2020-11-13 14:31:07 +01:00
parent 7a89e58483
commit 2f33aeac9f

View File

@ -1,7 +1,7 @@
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // 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. // See the LICENCE file in the repository root for full licence text.
using osu.Framework.Allocation; using NUnit.Framework;
using osu.Framework.Graphics; using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers; using osu.Framework.Graphics.Containers;
using osu.Game.Rulesets.Mania.Objects.Drawables; using osu.Game.Rulesets.Mania.Objects.Drawables;
@ -15,8 +15,8 @@ namespace osu.Game.Rulesets.Mania.Tests.Skinning
/// </summary> /// </summary>
public abstract class ManiaHitObjectTestScene : ManiaSkinnableTestScene public abstract class ManiaHitObjectTestScene : ManiaSkinnableTestScene
{ {
[BackgroundDependencyLoader] [SetUp]
private void load() public void SetUp() => Schedule(() =>
{ {
SetContents(() => new FillFlowContainer SetContents(() => new FillFlowContainer
{ {
@ -65,7 +65,7 @@ namespace osu.Game.Rulesets.Mania.Tests.Skinning
}, },
} }
}); });
} });
protected abstract DrawableManiaHitObject CreateHitObject(); protected abstract DrawableManiaHitObject CreateHitObject();
} }