mirror of
https://github.com/pestphp/pest.git
synced 2026-03-05 23:37:22 +01:00
overwrite phpunit junit logging with noop
This commit is contained in:
16
overrides/Logging/JUnit/JunitXmlLogger.php
Normal file
16
overrides/Logging/JUnit/JunitXmlLogger.php
Normal file
@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace PHPUnit\Logging\JUnit;
|
||||
|
||||
use PHPUnit\Event\Facade;
|
||||
use PHPUnit\TextUI\Output\Printer;
|
||||
|
||||
final class JunitXmlLogger
|
||||
{
|
||||
public function __construct(Printer $printer, Facade $facade)
|
||||
{
|
||||
/** @see \Pest\Logging\JUnit\JUnitLogger */
|
||||
}
|
||||
}
|
||||
@ -25,6 +25,7 @@ final class BootOverrides implements Bootstrapper
|
||||
'TextUI/Output/Default/ProgressPrinter/TestSkippedSubscriber.php',
|
||||
'TextUI/TestSuiteFilterProcessor.php',
|
||||
'Event/Value/ThrowableBuilder.php',
|
||||
'Logging/JUnit/JunitXmlLogger.php',
|
||||
];
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user