1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 17:27:24 +08:00
osu-lazer/osu.Game.Rulesets.Taiko.Tests/TestSceneBarLineApplication.cs

34 lines
1020 B
C#
Raw Normal View History

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.
using NUnit.Framework;
using osu.Game.Rulesets.Taiko.Objects;
using osu.Game.Rulesets.Taiko.Objects.Drawables;
namespace osu.Game.Rulesets.Taiko.Tests
{
2020-12-14 06:17:26 +08:00
public class TestSceneBarLineApplication : HitObjectApplicationTestScene
2020-12-14 03:09:44 +08:00
{
[Test]
public void TestApplyNewBarLine()
{
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
}), null));
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
}), null));
2020-12-14 06:17:26 +08:00
AddHitObject(barLine);
2020-12-14 03:09:44 +08:00
}
}
}