mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 02:37:25 +08:00
36 lines
1.0 KiB
C#
36 lines
1.0 KiB
C#
// 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.
|
|
|
|
#nullable disable
|
|
|
|
using NUnit.Framework;
|
|
using osu.Game.Rulesets.Taiko.Objects;
|
|
using osu.Game.Rulesets.Taiko.Objects.Drawables;
|
|
|
|
namespace osu.Game.Rulesets.Taiko.Tests
|
|
{
|
|
public partial class TestSceneBarLineApplication : HitObjectApplicationTestScene
|
|
{
|
|
[Test]
|
|
public void TestApplyNewBarLine()
|
|
{
|
|
DrawableBarLine barLine = new DrawableBarLine();
|
|
|
|
AddStep("apply new bar line", () => barLine.Apply(PrepareObject(new BarLine
|
|
{
|
|
StartTime = 400,
|
|
Major = true
|
|
})));
|
|
AddHitObject(barLine);
|
|
RemoveHitObject(barLine);
|
|
|
|
AddStep("apply new bar line", () => barLine.Apply(PrepareObject(new BarLine
|
|
{
|
|
StartTime = 200,
|
|
Major = false
|
|
})));
|
|
AddHitObject(barLine);
|
|
}
|
|
}
|
|
}
|