1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-19 16:52:56 +08:00
osu-lazer/osu.Game.Rulesets.Catch/Tests/TestCaseCatcherArea.cs

41 lines
1.2 KiB
C#
Raw Normal View History

2017-09-18 21:32:49 +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;
using NUnit.Framework;
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Game.Rulesets.Catch.UI;
using osu.Game.Tests.Visual;
namespace osu.Game.Rulesets.Catch.Tests
{
[TestFixture]
2017-10-23 19:58:50 +08:00
[Ignore("getting CI working")]
internal class TestCaseCatcherArea : OsuTestCase
2017-09-18 21:32:49 +08:00
{
public override IReadOnlyList<Type> RequiredTypes => new[]
{
typeof(CatcherArea),
2017-09-18 21:32:49 +08:00
};
[BackgroundDependencyLoader]
private void load(RulesetStore rulesets)
{
Children = new Drawable[]
{
new CatchInputManager(rulesets.GetRuleset(2))
{
RelativeSizeAxes = Axes.Both,
Child = new CatcherArea()
2017-09-18 21:32:49 +08:00
{
Anchor = Anchor.BottomLeft,
Origin = Anchor.BottomLeft
2017-09-18 21:32:49 +08:00
}
},
};
}
}
}