1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-16 19:33:01 +08:00
osu-lazer/osu.Game.Rulesets.Osu.Tests/TestSceneSpinnerSpunOut.cs

24 lines
689 B
C#
Raw Normal View History

2020-02-08 10:16:04 +08: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 System;
using System.Collections.Generic;
using System.Linq;
using NUnit.Framework;
using osu.Game.Rulesets.Osu.Mods;
namespace osu.Game.Rulesets.Osu.Tests
{
[TestFixture]
public class TestSceneSpinnerSpunOut : TestSceneSpinner
{
public override IReadOnlyList<Type> RequiredTypes => base.RequiredTypes.Concat(new[] { typeof(OsuModSpunOut) }).ToList();
[SetUp]
public void SetUp() => Schedule(() =>
{
2020-02-08 10:49:49 +08:00
SelectedMods.Value = new[] { new OsuModSpunOut() };
2020-02-08 10:16:04 +08:00
});
}
}