3 references to DoesNotMatch
Microsoft.DotNet.XUnitAssert.Tests (3)
StringAssertsTests.cs (3)
343
Assert.Throws<ArgumentNullException>("expectedRegexPattern", () => Assert.
DoesNotMatch
((string?)null!, "Hello, world!"));
349
Assert.
DoesNotMatch
(@"\d", "Hello");
355
var ex = Record.Exception(() => Assert.
DoesNotMatch
("ll", "Hello, world!"));