2018-01-05 11:21:19 +00:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
2017-09-19 12:41:51 +00:00
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
|
|
using NUnit.Framework;
|
2017-09-19 12:40:57 +00:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Catch.Tests
|
|
|
|
|
{
|
|
|
|
|
[TestFixture]
|
2017-10-23 11:58:50 +00:00
|
|
|
|
[Ignore("getting CI working")]
|
2017-09-19 12:40:57 +00:00
|
|
|
|
public class TestCaseCatchPlayer : Game.Tests.Visual.TestCasePlayer
|
|
|
|
|
{
|
2018-01-10 07:58:10 +00:00
|
|
|
|
public TestCaseCatchPlayer() : base(new CatchRuleset())
|
2017-10-02 09:38:48 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
2017-09-19 12:40:57 +00:00
|
|
|
|
}
|
|
|
|
|
}
|