6 references to IsNullOrEmpty
dotnet (6)
Commands\Test\MTP\IPC\Serializers\CommandLineOptionMessagesSerializer.cs (1)
167
(
IsNullOrEmpty
(commandLineOptionMessages.CommandLineOptionMessageList) ? 0 : 1));
Commands\Test\MTP\IPC\Serializers\DiscoveredTestMessagesSerializer.cs (1)
159
(
IsNullOrEmpty
(discoveredTestMessages.DiscoveredMessages) ? 0 : 1));
Commands\Test\MTP\IPC\Serializers\FileArtifactMessagesSerializer.cs (1)
195
(
IsNullOrEmpty
(fileArtifactMessages.FileArtifacts) ? 0 : 1));
Commands\Test\MTP\IPC\Serializers\TestResultMessagesSerializer.cs (3)
445
(
IsNullOrEmpty
(testResultMessages.SuccessfulTestMessages) ? 0 : 1) +
446
(
IsNullOrEmpty
(testResultMessages.FailedTestMessages) ? 0 : 1));
464
(
IsNullOrEmpty
(failedTestResultMessage.Exceptions) ? 0 : 1) +