51 lines
1020 B
PHP
51 lines
1020 B
PHP
<?php
|
|
/*
|
|
* 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.
|
|
*/
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class ExceptionInTest extends TestCase
|
|
{
|
|
public $setUp = false;
|
|
|
|
public $assertPreConditions = false;
|
|
|
|
public $assertPostConditions = false;
|
|
|
|
public $tearDown = false;
|
|
|
|
public $testSomething = false;
|
|
|
|
protected function setUp(): void
|
|
{
|
|
$this->setUp = true;
|
|
}
|
|
|
|
protected function tearDown(): void
|
|
{
|
|
$this->tearDown = true;
|
|
}
|
|
|
|
public function testSomething(): void
|
|
{
|
|
$this->testSomething = true;
|
|
|
|
throw new Exception;
|
|
}
|
|
|
|
protected function assertPreConditions(): void
|
|
{
|
|
$this->assertPreConditions = true;
|
|
}
|
|
|
|
protected function assertPostConditions(): void
|
|
{
|
|
$this->assertPostConditions = true;
|
|
}
|
|
}
|