/
home
/
sjslayjy
/
public_html
/
theweavenest
/
vendor
/
phpunit
/
phpunit
/
tests
/
unit
/
Framework
/
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\Framework; use PHPUnit\TestFixture\Failure; use PHPUnit\TestFixture\MyTestListener; use PHPUnit\TestFixture\Success; use PHPUnit\TestFixture\TestError; /** * @small */ final class TestListenerTest extends TestCase { /** * @var TestResult */ private $result; /** * @var MyTestListener */ private $listener; protected function setUp(): void { $this->result = new TestResult; $this->listener = new MyTestListener; $this->result->addListener($this->listener); } public function testError(): void { $test = new TestError; $test->run($this->result); $this->assertEquals(1, $this->listener->errorCount()); $this->assertEquals(1, $this->listener->endCount()); } public function testFailure(): void { $test = new Failure; $test->run($this->result); $this->assertEquals(1, $this->listener->failureCount()); $this->assertEquals(1, $this->listener->endCount()); } public function testStartStop(): void { $test = new Success; $test->run($this->result); $this->assertEquals(1, $this->listener->startCount()); $this->assertEquals(1, $this->listener->endCount()); } }