mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 10:52:53 +08:00
Add test for bar line application
This commit is contained in:
parent
44dd9a57a8
commit
c103c3691f
34
osu.Game.Rulesets.Taiko.Tests/TestBarLineApplication.cs
Normal file
34
osu.Game.Rulesets.Taiko.Tests/TestBarLineApplication.cs
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
||||||
|
// See the LICENCE file in the repository root for full licence text.
|
||||||
|
|
||||||
|
using NUnit.Framework;
|
||||||
|
using osu.Game.Rulesets.Taiko.Objects;
|
||||||
|
using osu.Game.Rulesets.Taiko.Objects.Drawables;
|
||||||
|
|
||||||
|
namespace osu.Game.Rulesets.Taiko.Tests
|
||||||
|
{
|
||||||
|
public class TestBarLineApplication : HitObjectApplicationTestScene
|
||||||
|
{
|
||||||
|
[Test]
|
||||||
|
public void TestApplyNewBarLine()
|
||||||
|
{
|
||||||
|
DrawableBarLine barLine = null;
|
||||||
|
|
||||||
|
AddHitObject(() => barLine = new DrawableBarLine(PrepareObject(new BarLine
|
||||||
|
{
|
||||||
|
StartTime = 400,
|
||||||
|
Major = true
|
||||||
|
})));
|
||||||
|
|
||||||
|
RemoveHitObject(() => barLine);
|
||||||
|
|
||||||
|
AddStep("apply new bar line", () => barLine.Apply(PrepareObject(new BarLine
|
||||||
|
{
|
||||||
|
StartTime = 200,
|
||||||
|
Major = false
|
||||||
|
}), null));
|
||||||
|
|
||||||
|
AddHitObject(() => barLine);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user