1 instantiation of TestSessionEvent
dotnet (1)
Commands\Test\MTP\IPC\Serializers\TestSessionEventSerializer.cs (1)
63return new TestSessionEvent(type, sessionUid, executionId);
9 references to TestSessionEvent
dotnet (9)
Commands\Test\MTP\IPC\Serializers\RegisterSerializers.cs (1)
32namedPipeBase.RegisterSerializer(new TestSessionEventSerializer(), typeof(TestSessionEvent));
Commands\Test\MTP\IPC\Serializers\TestSessionEventSerializer.cs (3)
70var testSessionEvent = (TestSessionEvent)objectToSerialize; 79private static ushort GetFieldCount(TestSessionEvent testSessionEvent) =>
Commands\Test\MTP\TestApplication.cs (2)
228case TestSessionEvent sessionEvent: 317private void OnSessionEvent(TestSessionEvent sessionEvent)
Commands\Test\MTP\TestApplicationHandler.cs (3)
201internal void OnSessionEventReceived(TestSessionEvent sessionEvent) 217throw new InvalidOperationException(string.Format(CliCommandStrings.DotnetTestMismatchingExecutionId, sessionEvent.ExecutionId, nameof(TestSessionEvent), _handshakeInfo.Value.ExecutionId)); 404private static void LogSessionEvent(TestSessionEvent testSessionEvent)