1 instantiation of TestSessionEvent
dotnet (1)
Commands\Test\MTP\IPC\Serializers\TestSessionEventSerializer.cs (1)
63
return new
TestSessionEvent
(type, sessionUid, executionId);
10 references to TestSessionEvent
dotnet (10)
Commands\Test\MTP\IPC\Serializers\RegisterSerializers.cs (1)
32
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)
276
case
TestSessionEvent
sessionEvent:
366
private void OnSessionEvent(
TestSessionEvent
sessionEvent)
Commands\Test\MTP\TestApplicationHandler.cs (4)
203
internal void OnSessionEventReceived(
TestSessionEvent
sessionEvent)
213
throw new InvalidOperationException(string.Format(CliCommandStrings.UnexpectedMessageWithoutHandshake, nameof(
TestSessionEvent
)));
219
throw new InvalidOperationException(string.Format(CliCommandStrings.DotnetTestMismatchingExecutionId, sessionEvent.ExecutionId, nameof(
TestSessionEvent
), _handshakeInfo.Value.ExecutionId));
412
private static void LogSessionEvent(
TestSessionEvent
testSessionEvent)