2017-09-19 20:41:51 +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 NUnit.Framework;
|
2017-09-19 20:40:57 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Catch.Tests
|
|
|
|
|
{
|
|
|
|
|
[TestFixture]
|
2017-10-23 19:58:50 +08:00
|
|
|
|
[Ignore("getting CI working")]
|
2017-09-19 20:40:57 +08:00
|
|
|
|
public class TestCaseCatchPlayer : Game.Tests.Visual.TestCasePlayer
|
|
|
|
|
{
|
2017-10-02 17:38:48 +08:00
|
|
|
|
public TestCaseCatchPlayer() : base(typeof(CatchRuleset))
|
|
|
|
|
{
|
|
|
|
|
}
|
2017-09-19 20:40:57 +08:00
|
|
|
|
}
|
|
|
|
|
}
|