2020-12-15 05:53:46 +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-15 05:53:46 +08:00
|
|
|
using NUnit.Framework;
|
|
|
|
using osu.Game.Rulesets.Taiko.Objects;
|
|
|
|
using osu.Game.Rulesets.Taiko.Objects.Drawables;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Taiko.Tests
|
|
|
|
{
|
|
|
|
public class TestSceneHitApplication : HitObjectApplicationTestScene
|
|
|
|
{
|
|
|
|
[Test]
|
|
|
|
public void TestApplyNewHit()
|
|
|
|
{
|
|
|
|
var hit = new DrawableHit();
|
|
|
|
|
|
|
|
AddStep("apply new hit", () => hit.Apply(PrepareObject(new Hit
|
|
|
|
{
|
|
|
|
Type = HitType.Rim,
|
|
|
|
IsStrong = false,
|
|
|
|
StartTime = 300
|
2021-04-21 13:32:37 +08:00
|
|
|
})));
|
2020-12-15 05:53:46 +08:00
|
|
|
|
|
|
|
AddHitObject(hit);
|
|
|
|
RemoveHitObject(hit);
|
|
|
|
|
|
|
|
AddStep("apply new hit", () => hit.Apply(PrepareObject(new Hit
|
|
|
|
{
|
|
|
|
Type = HitType.Centre,
|
|
|
|
IsStrong = true,
|
|
|
|
StartTime = 500
|
2021-04-21 13:32:37 +08:00
|
|
|
})));
|
2020-12-15 05:53:46 +08:00
|
|
|
|
|
|
|
AddHitObject(hit);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|