mirror of
https://github.com/ppy/osu
synced 2024-12-26 00:32:52 +00:00
Add failing test case
This commit is contained in:
parent
e47f933cdc
commit
0bfc46963b
@ -126,6 +126,21 @@ namespace osu.Game.Tests.Visual.UserInterface
|
|||||||
checkBindableAtValue("Circle Size", 9);
|
checkBindableAtValue("Circle Size", 9);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[Test]
|
||||||
|
public void TestExtendedLimitsRetainedAfterBoundCopyCreation()
|
||||||
|
{
|
||||||
|
setExtendedLimits(true);
|
||||||
|
setSliderValue("Circle Size", 11);
|
||||||
|
|
||||||
|
checkSliderAtValue("Circle Size", 11);
|
||||||
|
checkBindableAtValue("Circle Size", 11);
|
||||||
|
|
||||||
|
AddStep("create bound copy", () => _ = modDifficultyAdjust.CircleSize.GetBoundCopy());
|
||||||
|
|
||||||
|
checkSliderAtValue("Circle Size", 11);
|
||||||
|
checkBindableAtValue("Circle Size", 11);
|
||||||
|
}
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
public void TestResetToDefault()
|
public void TestResetToDefault()
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user