Add test for set preview point

This commit is contained in:
cdwcgt 2022-12-16 01:35:54 +09:00
parent c164744064
commit 984f0b5fa9
No known key found for this signature in database
GPG Key ID: 144396D01095C3A2
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,23 @@
// 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;
using osu.Game.Rulesets.Osu;
namespace osu.Game.Tests.Visual.Editing
{
public partial class TestScenePreviewTime : EditorTestScene
{
protected override Ruleset CreateEditorRuleset() => new OsuRuleset();
[Test]
public void TestSetPreviewTimingPoint()
{
AddStep("seek to 1000", () => EditorClock.Seek(1000));
AddAssert("time is 1000", () => EditorClock.CurrentTime == 1000);
AddStep("set current time as preview point", () => Editor.SetCurrectTimeAsPreview());
AddAssert("preview time is 1000", () => EditorBeatmap.PreviewTime.Value == 1000);
}
}
}

View File

@ -102,6 +102,8 @@ protected partial class TestEditor : Editor
public new void Redo() => base.Redo();
public new void SetCurrectTimeAsPreview() => base.SetCurrectTimeAsPreview();
public new bool Save() => base.Save();
public new void Cut() => base.Cut();