2 instantiations of FailException
Templates.Mvc.Tests (1)
BlazorTemplateTest.cs (1)
190throw new FailException($"Expected file to exist, but it doesn't: {singleProjectPath}");
xunit.assert (1)
Sdk\Exceptions\FailException.cs (1)
31 new FailException(message ?? "Assert.Fail() Failure");
5 references to FailException
Microsoft.DotNet.XUnitAssert.Tests (2)
FailAssertsTests.cs (2)
11 Assert.IsType<FailException>(ex); 20 Assert.IsType<FailException>(ex);
xunit.assert (3)
FailAsserts.cs (1)
34 throw FailException.ForFailure(message);
Sdk\Exceptions\FailException.cs (2)
22 /// Creates a new instance of the <see cref="FailException"/> class to be thrown when 27 public static FailException ForFailure(string? message) =>