6 references to DoesNotMatch
ConfigurationSchemaGenerator.Tests (1)
GeneratorTests.cs (1)
1636
Assert.
DoesNotMatch
(TimeSpanRegex(), invalidTimeSpanString);
Microsoft.Data.Analysis.Interactive.Tests (2)
DataFrameInteractiveTests.cs (2)
43
Assert.
DoesNotMatch
(_buttonHtmlPart, html);
65
Assert.
DoesNotMatch
(_buttonHtmlPart, html);
Microsoft.DotNet.XUnitAssert.Tests (3)
StringAssertsTests.cs (3)
373
Assert.Throws<ArgumentNullException>("expectedRegex", () => Assert.
DoesNotMatch
((Regex?)null!, "Hello, world!"));
379
Assert.
DoesNotMatch
(new Regex(@"\d"), "Hello");
385
var ex = Record.Exception(() => Assert.
DoesNotMatch
(new Regex(@"ll"), "Hello, world!"));