public function Framework_TestCaseTest::testExceptionInAssertPostConditions in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpunit/phpunit/tests/Framework/TestCaseTest.php \Framework_TestCaseTest::testExceptionInAssertPostConditions()
File
- vendor/
phpunit/ phpunit/ tests/ Framework/ TestCaseTest.php, line 143
Class
- Framework_TestCaseTest
- @since Class available since Release 2.0.0 @covers PHPUnit_Framework_TestCase
Code
public function testExceptionInAssertPostConditions() {
$test = new ExceptionInAssertPostConditionsTest('testSomething');
$result = $test
->run();
$this
->assertTrue($test->setUp);
$this
->assertTrue($test->assertPreConditions);
$this
->assertTrue($test->testSomething);
$this
->assertTrue($test->assertPostConditions);
$this
->assertTrue($test->tearDown);
}