@@ -256,11 +256,11 @@ public async Task DisplayBannerAsync(string? bannerMessage)
256
256
{
257
257
if ( _fileLoggerInformation . SyncronousWrite )
258
258
{
259
- _terminalTestReporter . WriteWarningMessage ( _assemblyName , _targetFramework , _shortArchitecture , executionId : null , string . Format ( CultureInfo . CurrentCulture , PlatformResources . DiagnosticFileLevelWithFlush , _fileLoggerInformation . LogLevel , _fileLoggerInformation . LogFile . FullName ) , padding : null ) ;
259
+ _terminalTestReporter . WriteWarningMessage ( _assemblyName , _targetFramework , _shortArchitecture , string . Format ( CultureInfo . CurrentCulture , PlatformResources . DiagnosticFileLevelWithFlush , _fileLoggerInformation . LogLevel , _fileLoggerInformation . LogFile . FullName ) , padding : null ) ;
260
260
}
261
261
else
262
262
{
263
- _terminalTestReporter . WriteWarningMessage ( _assemblyName , _targetFramework , _shortArchitecture , executionId : null , string . Format ( CultureInfo . CurrentCulture , PlatformResources . DiagnosticFileLevelWithAsyncFlush , _fileLoggerInformation . LogLevel , _fileLoggerInformation . LogFile . FullName ) , padding : null ) ;
263
+ _terminalTestReporter . WriteWarningMessage ( _assemblyName , _targetFramework , _shortArchitecture , string . Format ( CultureInfo . CurrentCulture , PlatformResources . DiagnosticFileLevelWithAsyncFlush , _fileLoggerInformation . LogLevel , _fileLoggerInformation . LogFile . FullName ) , padding : null ) ;
264
264
}
265
265
}
266
266
}
@@ -281,7 +281,7 @@ public async Task DisplayBeforeSessionStartAsync()
281
281
// Start test execution here, rather than in ShowBanner, because then we know
282
282
// if we are a testHost controller or not, and if we should show progress bar.
283
283
_terminalTestReporter . TestExecutionStarted ( _clock . UtcNow , workerCount : 1 , isDiscovery : _isListTests ) ;
284
- _terminalTestReporter . AssemblyRunStarted ( _assemblyName , _targetFramework , _shortArchitecture , executionId : null ) ;
284
+ _terminalTestReporter . AssemblyRunStarted ( _assemblyName , _targetFramework , _shortArchitecture ) ;
285
285
if ( _logger is not null && _logger . IsEnabled ( LogLevel . Trace ) )
286
286
{
287
287
await _logger . LogTraceAsync ( "DisplayBeforeSessionStartAsync" ) ;
@@ -316,7 +316,7 @@ private async Task DisplayAfterSessionEndRunInternalAsync()
316
316
{
317
317
if ( ! _firstCallTo_OnSessionStartingAsync )
318
318
{
319
- _terminalTestReporter . AssemblyRunCompleted ( _assemblyName , _targetFramework , _shortArchitecture , executionId : null , exitCode : null , outputData : null , errorData : null ) ;
319
+ _terminalTestReporter . AssemblyRunCompleted ( _assemblyName , _targetFramework , _shortArchitecture , exitCode : null , outputData : null , errorData : null ) ;
320
320
_terminalTestReporter . TestExecutionCompleted ( _clock . UtcNow ) ;
321
321
}
322
322
}
@@ -372,17 +372,17 @@ public async Task DisplayAsync(IOutputDeviceDataProducer producer, IOutputDevice
372
372
373
373
case WarningMessageOutputDeviceData warningData :
374
374
await LogDebugAsync ( warningData . Message ) ;
375
- _terminalTestReporter . WriteWarningMessage ( _assemblyName , _targetFramework , _shortArchitecture , executionId : null , warningData . Message , null ) ;
375
+ _terminalTestReporter . WriteWarningMessage ( _assemblyName , _targetFramework , _shortArchitecture , warningData . Message , null ) ;
376
376
break ;
377
377
378
378
case ErrorMessageOutputDeviceData errorData :
379
379
await LogDebugAsync ( errorData . Message ) ;
380
- _terminalTestReporter . WriteErrorMessage ( _assemblyName , _targetFramework , _shortArchitecture , executionId : null , errorData . Message , null ) ;
380
+ _terminalTestReporter . WriteErrorMessage ( _assemblyName , _targetFramework , _shortArchitecture , errorData . Message , null ) ;
381
381
break ;
382
382
383
383
case ExceptionOutputDeviceData exceptionOutputDeviceData :
384
384
await LogDebugAsync ( exceptionOutputDeviceData . Exception . ToString ( ) ) ;
385
- _terminalTestReporter . WriteErrorMessage ( _assemblyName , _targetFramework , _shortArchitecture , executionId : null , exceptionOutputDeviceData . Exception ) ;
385
+ _terminalTestReporter . WriteErrorMessage ( _assemblyName , _targetFramework , _shortArchitecture , exceptionOutputDeviceData . Exception ) ;
386
386
break ;
387
387
}
388
388
}
@@ -413,16 +413,14 @@ public Task ConsumeAsync(IDataProducer dataProducer, IData value, CancellationTo
413
413
_targetFramework ,
414
414
_shortArchitecture ,
415
415
testNodeStateChanged . TestNode . Uid . Value ,
416
- testNodeStateChanged . TestNode . DisplayName ,
417
- executionId : null ) ;
416
+ testNodeStateChanged . TestNode . DisplayName ) ;
418
417
break ;
419
418
420
419
case ErrorTestNodeStateProperty errorState :
421
420
_terminalTestReporter . TestCompleted (
422
421
_assemblyName ,
423
422
_targetFramework ,
424
423
_shortArchitecture ,
425
- executionId : null ,
426
424
testNodeStateChanged . TestNode . Uid . Value ,
427
425
testNodeStateChanged . TestNode . DisplayName ,
428
426
TestOutcome . Error ,
@@ -441,7 +439,6 @@ public Task ConsumeAsync(IDataProducer dataProducer, IData value, CancellationTo
441
439
_assemblyName ,
442
440
_targetFramework ,
443
441
_shortArchitecture ,
444
- executionId : null ,
445
442
testNodeStateChanged . TestNode . Uid . Value ,
446
443
testNodeStateChanged . TestNode . DisplayName ,
447
444
TestOutcome . Fail ,
@@ -460,7 +457,6 @@ public Task ConsumeAsync(IDataProducer dataProducer, IData value, CancellationTo
460
457
_assemblyName ,
461
458
_targetFramework ,
462
459
_shortArchitecture ,
463
- executionId : null ,
464
460
testNodeStateChanged . TestNode . Uid . Value ,
465
461
testNodeStateChanged . TestNode . DisplayName ,
466
462
TestOutcome . Timeout ,
@@ -479,7 +475,6 @@ public Task ConsumeAsync(IDataProducer dataProducer, IData value, CancellationTo
479
475
_assemblyName ,
480
476
_targetFramework ,
481
477
_shortArchitecture ,
482
- executionId : null ,
483
478
testNodeStateChanged . TestNode . Uid . Value ,
484
479
testNodeStateChanged . TestNode . DisplayName ,
485
480
TestOutcome . Canceled ,
@@ -498,7 +493,6 @@ public Task ConsumeAsync(IDataProducer dataProducer, IData value, CancellationTo
498
493
_assemblyName ,
499
494
_targetFramework ,
500
495
_shortArchitecture ,
501
- executionId : null ,
502
496
testNodeStateChanged . TestNode . Uid . Value ,
503
497
testNodeStateChanged . TestNode . DisplayName ,
504
498
outcome : TestOutcome . Passed ,
@@ -517,7 +511,6 @@ public Task ConsumeAsync(IDataProducer dataProducer, IData value, CancellationTo
517
511
_assemblyName ,
518
512
_targetFramework ,
519
513
_shortArchitecture ,
520
- executionId : null ,
521
514
testNodeStateChanged . TestNode . Uid . Value ,
522
515
testNodeStateChanged . TestNode . DisplayName ,
523
516
TestOutcome . Skipped ,
@@ -536,7 +529,6 @@ public Task ConsumeAsync(IDataProducer dataProducer, IData value, CancellationTo
536
529
_assemblyName ,
537
530
_targetFramework ,
538
531
_shortArchitecture ,
539
- executionId : null ,
540
532
testNodeStateChanged . TestNode . DisplayName ,
541
533
testNodeStateChanged . TestNode . Uid ) ;
542
534
break ;
@@ -552,7 +544,6 @@ public Task ConsumeAsync(IDataProducer dataProducer, IData value, CancellationTo
552
544
_assemblyName ,
553
545
_targetFramework ,
554
546
_shortArchitecture ,
555
- executionId : null ,
556
547
artifact . TestNode . DisplayName ,
557
548
artifact . FileInfo . FullName ) ;
558
549
}
@@ -567,7 +558,6 @@ public Task ConsumeAsync(IDataProducer dataProducer, IData value, CancellationTo
567
558
_assemblyName ,
568
559
_targetFramework ,
569
560
_shortArchitecture ,
570
- executionId : null ,
571
561
testName : null ,
572
562
artifact . FileInfo . FullName ) ;
573
563
}
@@ -581,7 +571,6 @@ public Task ConsumeAsync(IDataProducer dataProducer, IData value, CancellationTo
581
571
_assemblyName ,
582
572
_targetFramework ,
583
573
_shortArchitecture ,
584
- executionId : null ,
585
574
testName : null ,
586
575
artifact . FileInfo . FullName ) ;
587
576
}
0 commit comments