mirror of
https://github.com/ppy/osu.git
synced 2025-01-09 15:53:07 +08:00
23 lines
684 B
C#
23 lines
684 B
C#
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|||
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|||
|
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using NUnit.Framework;
|
|||
|
using osu.Game.Rulesets.Osu.Mods;
|
|||
|
|
|||
|
namespace osu.Game.Rulesets.Osu.Tests
|
|||
|
{
|
|||
|
[Ignore("getting CI working")]
|
|||
|
public class TestCaseHitCircleHidden : TestCaseHitCircle
|
|||
|
{
|
|||
|
public override IReadOnlyList<Type> RequiredTypes => base.RequiredTypes.Concat(new[] { typeof(OsuModHidden) }).ToList();
|
|||
|
|
|||
|
public TestCaseHitCircleHidden()
|
|||
|
{
|
|||
|
Mods.Add(new OsuModHidden());
|
|||
|
}
|
|||
|
}
|
|||
|
}
|