Replace testcases with a basic test suite

This commit is contained in:
smoogipoo
2018-03-02 18:20:33 +09:00
parent 1f21ccffb0
commit cdca7371a3
25 changed files with 297 additions and 7329 deletions

View File

@ -18,10 +18,10 @@ namespace osu.Game.Rulesets.Catch.Tests
{
protected override string ResourceAssembly => "osu.Game.Rulesets.Catch";
[TestCase(875945), Ignore("See: https://github.com/ppy/osu/issues/2149")]
public new void Test(int beatmapId)
[TestCase("basic"), Ignore("See: https://github.com/ppy/osu/issues/2149")]
public new void Test(string name)
{
base.Test(beatmapId);
base.Test(name);
}
protected override IEnumerable<ConvertValue> CreateConvertValue(HitObject hitObject)