6 references to DoesNotMatch
Microsoft.Data.Analysis.Interactive.Tests (2)
DataFrameInteractiveTests.cs (2)
43Assert.DoesNotMatch(_buttonHtmlPart, html); 65Assert.DoesNotMatch(_buttonHtmlPart, html);
Microsoft.DotNet.XUnitAssert.Tests (4)
StringAssertsTests.cs (4)
374 Assert.Throws<ArgumentNullException>(() => Assert.DoesNotMatch((Regex?)null!, "Hello, world!")); 375 Assert.DoesNotMatch(new Regex(@"\w+"), null); 381 Assert.DoesNotMatch(new Regex(@"\d"), "Hello"); 387 var ex = Record.Exception(() => Assert.DoesNotMatch(new Regex(@"\w"), "Hello, world!"));