2018-01-01 18:55:24 +08:00
|
|
|
|
// 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;
|
2018-01-01 19:08:44 +08:00
|
|
|
|
using NUnit.Framework;
|
2018-01-01 18:55:24 +08:00
|
|
|
|
using osu.Game.Rulesets.Osu.Mods;
|
|
|
|
|
using osu.Game.Rulesets.Osu.Objects;
|
|
|
|
|
using osu.Game.Rulesets.Osu.Objects.Drawables;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu.Tests
|
|
|
|
|
{
|
2018-01-01 19:08:44 +08:00
|
|
|
|
[Ignore("getting CI working")]
|
2018-01-01 18:55:24 +08:00
|
|
|
|
public class TestCaseHitCircleHidden : TestCaseHitCircle
|
|
|
|
|
{
|
|
|
|
|
public override IReadOnlyList<Type> RequiredTypes => new[]
|
|
|
|
|
{
|
|
|
|
|
typeof(HitCircle),
|
|
|
|
|
typeof(OsuModHidden),
|
|
|
|
|
typeof(DrawableHitCircle)
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
public TestCaseHitCircleHidden()
|
|
|
|
|
{
|
|
|
|
|
Mods.Add(new OsuModHidden());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|