5 references to DoesNotMatch
Microsoft.Data.Analysis.Interactive.Tests (2)
DataFrameInteractiveTests.cs (2)
43
Assert.
DoesNotMatch
(_buttonHtmlPart, html);
65
Assert.
DoesNotMatch
(_buttonHtmlPart, html);
Microsoft.DotNet.XUnitAssert.Tests (3)
Asserts\StringAssertsTests.cs (3)
350
Assert.Throws<ArgumentNullException>("expectedRegex", () => Assert.
DoesNotMatch
((Regex?)null!, "Hello, world!"));
356
Assert.
DoesNotMatch
(new Regex(@"\d"), "Hello");
362
var ex = Record.Exception(() => Assert.
DoesNotMatch
(new Regex(@"ll"), "Hello, world!"));