We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4905f19 commit 3c0eb62Copy full SHA for 3c0eb62
tests/Tests.CodeOfChaos.Extensions/StringExtensionTests.cs
@@ -109,15 +109,7 @@ public async Task ToGuid_ShouldThrowException_WhenInputIsInvalid(string input) {
109
// Act
110
111
// Assert
112
- Assert.Throws<TUnitException>(() => input.ToGuid());
113
- }
114
-
115
116
- [Test]
117
- [Arguments("test", "00000000-0000-0000-0000-000000000000")]
118
- public async Task ToGuidAsHash_ShouldReturnSameGuid(string input, string expectedGuidString) {
119
120
+ Assert.Throws<FormatException>(() => input.ToGuid());
121
}
122
123
[Test]
0 commit comments