Skip to content

Commit 273b408

Browse files
committed
Update ToolbarPlacement enum test to expect 4
Adjust the unit test to reflect an added value in the ToolbarPlacement enum. Renamed test from ToolbarPlacement_HasThreeValues to ToolbarPlacement_HasFourValues and updated the Assert from 3 to 4 in tests/Verso.Abstractions.Tests/Enums/EnumTests.cs so the test matches the enum's current values.
1 parent 74f6727 commit 273b408

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/Verso.Abstractions.Tests/Enums/EnumTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ public void ThemeKind_HasThreeValues()
1010
}
1111

1212
[TestMethod]
13-
public void ToolbarPlacement_HasThreeValues()
13+
public void ToolbarPlacement_HasFourValues()
1414
{
15-
Assert.AreEqual(3, Enum.GetValues<ToolbarPlacement>().Length);
15+
Assert.AreEqual(4, Enum.GetValues<ToolbarPlacement>().Length);
1616
}
1717

1818
[TestMethod]

0 commit comments

Comments
 (0)