1 instantiation of TrueException
xunit.assert (1)
BooleanAsserts.cs (1)
143 throw new TrueException(userMessage, condition);
15 references to TrueException
Microsoft.AspNetCore.Authentication.Negotiate.Test (2)
NegotiateHandlerTests.cs (2)
111var 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)
4259await Assert.ThrowsAsync<Xunit.Sdk.TrueException>(() => VerifyItemExistsAsync(code, "XAttribute"));
Microsoft.DotNet.XUnitAssert.Tests (4)
BooleanAssertsTests.cs (2)
71 Assert.IsType<TrueException>(ex); 85 Assert.IsType<TrueException>(ex);
MultipleAssertsTests.cs (2)
35 Assert.IsType<TrueException>(ex); 77 innerEx => Assert.IsType<TrueException>(innerEx),
xunit.assert (5)
BooleanAsserts.cs (4)
87 /// <exception cref="TrueException">Thrown when the condition is false</exception> 101 /// <exception cref="TrueException">Thrown when the condition is false</exception> 116 /// <exception cref="TrueException">Thrown when the condition is false</exception> 132 /// <exception cref="TrueException">Thrown when the condition is false</exception>
Sdk\Exceptions\TrueException.cs (1)
18 /// Creates a new instance of the <see cref="TrueException"/> class.