1 instantiation of ExceptionMessage
dotnet (1)
Commands\Test\MTP\IPC\Serializers\TestResultMessagesSerializer.cs (1)
340exceptionMessages.Add(new ExceptionMessage(errorMessage, errorType, stackTrace));
8 references to ExceptionMessage
dotnet (8)
Commands\Test\MTP\IPC\Models\TestResultMessages.cs (1)
8internal sealed record FailedTestResultMessage(string? Uid, string? DisplayName, byte? State, long? Duration, string? Reason, ExceptionMessage[]? Exceptions, string? StandardOutput, string? ErrorOutput, string? SessionUid, string? Expected, string? Actual);
Commands\Test\MTP\IPC\Serializers\TestResultMessagesSerializer.cs (6)
237ExceptionMessage[] exceptionMessages = []; 306private static ExceptionMessage[] ReadExceptionMessagesPayload(Stream stream) 308var exceptionMessages = new List<ExceptionMessage>(); 431private static void WriteExceptionMessagesPayload(Stream stream, ExceptionMessage[]? exceptionMessages) 446foreach (ExceptionMessage exceptionMessage in exceptionMessages) 489private static ushort GetFieldCount(ExceptionMessage exceptionMessage) =>
Commands\Test\MTP\TestApplicationHandler.cs (1)
717$"{failedTestResult.State}, {failedTestResult.Duration}, {failedTestResult.Reason}, {string.Join(", ", (failedTestResult.Exceptions ?? Array.Empty<ExceptionMessage>()).Select(e => $"{e.ErrorMessage}, {e.ErrorType}, {e.StackTrace}"))}" +