/
home
/
sjslayjy
/
public_html
/
theweavenest
/
vendor
/
phpunit
/
phpunit
/
tests
/
_files
/
Upload File
HOME
<?php declare(strict_types=1); /* * This file is part of PHPUnit. * * (c) Sebastian Bergmann <sebastian@phpunit.de> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace PHPUnit\TestFixture; use PHPUnit\Framework\AssertionFailedError; use PHPUnit\Framework\Test; use PHPUnit\Framework\TestListener; use PHPUnit\Framework\TestSuite; use PHPUnit\Framework\Warning; use Throwable; final class MyTestListener implements TestListener { private $endCount = 0; private $errorCount = 0; private $failureCount = 0; private $warningCount = 0; private $notImplementedCount = 0; private $riskyCount = 0; private $skippedCount = 0; private $startCount = 0; public function addError(Test $test, Throwable $t, float $time): void { $this->errorCount++; } public function addWarning(Test $test, Warning $e, float $time): void { $this->warningCount++; } public function addFailure(Test $test, AssertionFailedError $e, float $time): void { $this->failureCount++; } public function addIncompleteTest(Test $test, Throwable $t, float $time): void { $this->notImplementedCount++; } public function addRiskyTest(Test $test, Throwable $t, float $time): void { $this->riskyCount++; } public function addSkippedTest(Test $test, Throwable $t, float $time): void { $this->skippedCount++; } public function startTestSuite(TestSuite $suite): void { } public function endTestSuite(TestSuite $suite): void { } public function startTest(Test $test): void { $this->startCount++; } public function endTest(Test $test, float $time): void { $this->endCount++; } public function endCount(): int { return $this->endCount; } public function errorCount(): int { return $this->errorCount; } public function failureCount(): int { return $this->failureCount; } public function warningCount(): int { return $this->warningCount; } public function notImplementedCount(): int { return $this->notImplementedCount; } public function riskyCount(): int { return $this->riskyCount; } public function skippedCount(): int { return $this->skippedCount; } public function startCount(): int { return $this->startCount; } }