mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 13:37:51 +08:00
46 lines
2.5 KiB
C#
46 lines
2.5 KiB
C#
// 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 NUnit.Framework;
|
|
using osu.Game.Beatmaps.Legacy;
|
|
using osu.Game.Rulesets.Taiko.Mods;
|
|
using osu.Game.Tests.Beatmaps;
|
|
|
|
namespace osu.Game.Rulesets.Taiko.Tests
|
|
{
|
|
[TestFixture]
|
|
public class TaikoLegacyModConversionTest : LegacyModConversionTest
|
|
{
|
|
private static readonly object[][] taiko_mod_mapping =
|
|
{
|
|
new object[] { LegacyMods.NoFail, new[] { typeof(TaikoModNoFail) } },
|
|
new object[] { LegacyMods.Easy, new[] { typeof(TaikoModEasy) } },
|
|
new object[] { LegacyMods.Hidden, new[] { typeof(TaikoModHidden) } },
|
|
new object[] { LegacyMods.HardRock, new[] { typeof(TaikoModHardRock) } },
|
|
new object[] { LegacyMods.SuddenDeath, new[] { typeof(TaikoModSuddenDeath) } },
|
|
new object[] { LegacyMods.DoubleTime, new[] { typeof(TaikoModDoubleTime) } },
|
|
new object[] { LegacyMods.Relax, new[] { typeof(TaikoModRelax) } },
|
|
new object[] { LegacyMods.HalfTime, new[] { typeof(TaikoModHalfTime) } },
|
|
new object[] { LegacyMods.Nightcore, new[] { typeof(TaikoModNightcore) } },
|
|
new object[] { LegacyMods.Flashlight, new[] { typeof(TaikoModFlashlight) } },
|
|
new object[] { LegacyMods.Autoplay, new[] { typeof(TaikoModAutoplay) } },
|
|
new object[] { LegacyMods.Perfect, new[] { typeof(TaikoModPerfect) } },
|
|
new object[] { LegacyMods.Random, new[] { typeof(TaikoModRandom) } },
|
|
new object[] { LegacyMods.Cinema, new[] { typeof(TaikoModCinema) } },
|
|
new object[] { LegacyMods.HardRock | LegacyMods.DoubleTime, new[] { typeof(TaikoModHardRock), typeof(TaikoModDoubleTime) } }
|
|
};
|
|
|
|
[TestCaseSource(nameof(taiko_mod_mapping))]
|
|
[TestCase(LegacyMods.Cinema | LegacyMods.Autoplay, new[] { typeof(TaikoModCinema) })]
|
|
[TestCase(LegacyMods.Nightcore | LegacyMods.DoubleTime, new[] { typeof(TaikoModNightcore) })]
|
|
[TestCase(LegacyMods.Perfect | LegacyMods.SuddenDeath, new[] { typeof(TaikoModPerfect) })]
|
|
public new void TestFromLegacy(LegacyMods legacyMods, Type[] expectedMods) => base.TestFromLegacy(legacyMods, expectedMods);
|
|
|
|
[TestCaseSource(nameof(taiko_mod_mapping))]
|
|
public new void TestToLegacy(LegacyMods legacyMods, Type[] givenMods) => base.TestToLegacy(legacyMods, givenMods);
|
|
|
|
protected override Ruleset CreateRuleset() => new TaikoRuleset();
|
|
}
|
|
}
|