osu/osu.Game.Rulesets.Catch/Tests/TestCasePerformancePoints.cs

17 lines
473 B
C#
Raw Normal View History

2018-01-05 11:21:19 +00:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2017-11-28 12:45:24 +00:00
using NUnit.Framework;
namespace osu.Game.Rulesets.Catch.Tests
{
2017-11-28 12:45:24 +00:00
[Ignore("getting CI working")]
2017-11-17 07:54:50 +00:00
public class TestCasePerformancePoints : Game.Tests.Visual.TestCasePerformancePoints
{
public TestCasePerformancePoints()
: base(new CatchRuleset())
{
}
}
}