%PDF- %PDF-
Direktori : /var/www/html/conference/vendor/phpunit/phpunit/tests/_files/ |
Current File : /var/www/html/conference/vendor/phpunit/phpunit/tests/_files/ExceptionInTearDownTest.php |
<?php use PHPUnit\Framework\TestCase; class ExceptionInTearDownTest extends TestCase { public $setUp = false; public $assertPreConditions = false; public $assertPostConditions = false; public $tearDown = false; public $testSomething = false; protected function setUp() { $this->setUp = true; } protected function assertPreConditions() { $this->assertPreConditions = true; } public function testSomething() { $this->testSomething = true; } protected function assertPostConditions() { $this->assertPostConditions = true; } protected function tearDown() { $this->tearDown = true; throw new Exception; } }