1 instantiation of TestSessionEvent
dotnet (1)
Commands\Test\MTP\IPC\Serializers\TestSessionEventSerializer.cs (1)
63
return new
TestSessionEvent
(type, sessionUid, executionId);
17 references to TestSessionEvent
dotnet (17)
Commands\Test\MTP\IPC\Serializers\RegisterSerializers.cs (1)
33
namedPipeBase.RegisterSerializer(new TestSessionEventSerializer(), typeof(
TestSessionEvent
));
Commands\Test\MTP\IPC\Serializers\TestSessionEventSerializer.cs (3)
70
var
testSessionEvent = (
TestSessionEvent
)objectToSerialize;
79
private static ushort GetFieldCount(
TestSessionEvent
testSessionEvent) =>
Commands\Test\MTP\TestApplication.cs (2)
318
case
TestSessionEvent
sessionEvent:
453
private void OnSessionEvent(
TestSessionEvent
sessionEvent)
Commands\Test\MTP\TestApplicationHandler.cs (11)
378
internal void OnSessionEventReceived(
TestSessionEvent
sessionEvent)
386
throw new InvalidOperationException(string.Format(CliCommandStrings.UnexpectedMessageInHelpMode, nameof(
TestSessionEvent
)));
391
throw new InvalidOperationException(string.Format(CliCommandStrings.UnexpectedMessageWithoutHandshake, nameof(
TestSessionEvent
)));
396
nameof(
TestSessionEvent
.ExecutionId),
397
nameof(
TestSessionEvent
));
402
throw new InvalidOperationException(string.Format(CliCommandStrings.DotnetTestMismatchingExecutionId, sessionExecutionId, nameof(
TestSessionEvent
), _handshakeInfo.Value.ExecutionId));
409
nameof(
TestSessionEvent
.SessionType),
410
nameof(
TestSessionEvent
)));
415
nameof(
TestSessionEvent
.SessionUid),
416
nameof(
TestSessionEvent
));
641
private static void LogSessionEvent(
TestSessionEvent
testSessionEvent)