1 instantiation of TrueException
xunit.assert (1)
Sdk\Exceptions\TrueException.cs (1)
42 new TrueException(
17 references to TrueException
Microsoft.AspNetCore.Authentication.Negotiate.Test (2)
NegotiateHandlerTests.cs (2)
104var ex = await Assert.ThrowsAsync<TrueException>(() => SendAsync(server, "/404", new TestConnection(), "Negotiate ClientNtlmBlob2"));
Microsoft.AspNetCore.Mvc.FunctionalTests (3)
Infrastructure\ResourceFile.cs (3)
64/// <exception cref="Xunit.Sdk.TrueException"> 129/// <exception cref="Xunit.Sdk.TrueException"> 169/// <exception cref="Xunit.Sdk.TrueException">
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (1)
Completion\CompletionProviders\SymbolCompletionProviderTests.cs (1)
4102await Assert.ThrowsAsync<Xunit.Sdk.TrueException>(() => VerifyItemExistsAsync(code, "XAttribute"));
Microsoft.DotNet.XUnitAssert.Tests (4)
BooleanAssertsTests.cs (2)
68 Assert.IsType<TrueException>(ex); 82 Assert.IsType<TrueException>(ex);
MultipleAssertsTests.cs (2)
29 Assert.IsType<TrueException>(ex); 71 innerEx => Assert.IsType<TrueException>(innerEx),
xunit.assert (7)
BooleanAsserts.cs (5)
89 /// <exception cref="TrueException">Thrown when the condition is false</exception> 101 /// <exception cref="TrueException">Thrown when the condition is false</exception> 114 /// <exception cref="TrueException">Thrown when the condition is false</exception> 130 /// <exception cref="TrueException">Thrown when the condition is false</exception> 141 throw TrueException.ForNonTrueValue(userMessage, condition);
Sdk\Exceptions\TrueException.cs (2)
30 /// Creates a new instance of the <see cref="TrueException"/> class to be thrown when 35 public static TrueException ForNonTrueValue(