2020-12-14 03:09:44 +08:00
|
|
|
// 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.
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2020-12-14 03:09:44 +08:00
|
|
|
using NUnit.Framework;
|
|
|
|
using osu.Game.Rulesets.Taiko.Objects;
|
|
|
|
using osu.Game.Rulesets.Taiko.Objects.Drawables;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Taiko.Tests
|
|
|
|
{
|
2022-11-24 13:32:20 +08:00
|
|
|
public partial class TestSceneBarLineApplication : HitObjectApplicationTestScene
|
2020-12-14 03:09:44 +08:00
|
|
|
{
|
|
|
|
[Test]
|
|
|
|
public void TestApplyNewBarLine()
|
|
|
|
{
|
2020-12-15 05:51:35 +08:00
|
|
|
DrawableBarLine barLine = new DrawableBarLine();
|
|
|
|
|
|
|
|
AddStep("apply new bar line", () => barLine.Apply(PrepareObject(new BarLine
|
2020-12-14 03:09:44 +08:00
|
|
|
{
|
|
|
|
StartTime = 400,
|
|
|
|
Major = true
|
2021-04-21 13:32:37 +08:00
|
|
|
})));
|
2020-12-14 06:17:26 +08:00
|
|
|
AddHitObject(barLine);
|
|
|
|
RemoveHitObject(barLine);
|
2020-12-14 03:09:44 +08:00
|
|
|
|
|
|
|
AddStep("apply new bar line", () => barLine.Apply(PrepareObject(new BarLine
|
|
|
|
{
|
|
|
|
StartTime = 200,
|
|
|
|
Major = false
|
2021-04-21 13:32:37 +08:00
|
|
|
})));
|
2020-12-14 06:17:26 +08:00
|
|
|
AddHitObject(barLine);
|
2020-12-14 03:09:44 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|