2 instantiations of DoesNotMatchException
xunit.assert (2)
StringAsserts.cs (2)
223 throw new DoesNotMatchException(expectedRegexPattern, actualString); 243 throw new DoesNotMatchException(expectedRegex.ToString(), actualString);
5 references to DoesNotMatchException
Microsoft.DotNet.XUnitAssert.Tests (2)
StringAssertsTests.cs (2)
359 Assert.IsType<DoesNotMatchException>(ex); 389 Assert.IsType<DoesNotMatchException>(ex);
xunit.assert (3)
Sdk\Exceptions\DoesNotMatchException.cs (1)
20 /// Creates a new instance of the <see cref="DoesNotMatchException"/> class.
StringAsserts.cs (2)
211 /// <exception cref="DoesNotMatchException">Thrown when the string matches the regex pattern</exception> 231 /// <exception cref="DoesNotMatchException">Thrown when the string matches the regex</exception>