protected function PHPUnit_Framework_TestCase::assertPreConditions in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpunit/phpunit/src/Framework/TestCase.php \PHPUnit_Framework_TestCase::assertPreConditions()
Performs assertions shared by all tests of a test case.
This method is called before the execution of a test starts and after setUp() is called.
@since Method available since Release 3.2.8
1 call to PHPUnit_Framework_TestCase::assertPreConditions()
- PHPUnit_Framework_TestCase::runBare in vendor/
phpunit/ phpunit/ src/ Framework/ TestCase.php - Runs the bare test sequence.
6 methods override PHPUnit_Framework_TestCase::assertPreConditions()
- ExceptionInAssertPostConditionsTest::assertPreConditions in vendor/
phpunit/ phpunit/ tests/ _files/ ExceptionInAssertPostConditionsTest.php - Performs assertions shared by all tests of a test case.
- ExceptionInAssertPreConditionsTest::assertPreConditions in vendor/
phpunit/ phpunit/ tests/ _files/ ExceptionInAssertPreConditionsTest.php - Performs assertions shared by all tests of a test case.
- ExceptionInSetUpTest::assertPreConditions in vendor/
phpunit/ phpunit/ tests/ _files/ ExceptionInSetUpTest.php - Performs assertions shared by all tests of a test case.
- ExceptionInTearDownTest::assertPreConditions in vendor/
phpunit/ phpunit/ tests/ _files/ ExceptionInTearDownTest.php - Performs assertions shared by all tests of a test case.
- ExceptionInTest::assertPreConditions in vendor/
phpunit/ phpunit/ tests/ _files/ ExceptionInTest.php - Performs assertions shared by all tests of a test case.
File
- vendor/
phpunit/ phpunit/ src/ Framework/ TestCase.php, line 1827
Class
- PHPUnit_Framework_TestCase
- A TestCase defines the fixture to run multiple tests.
Code
protected function assertPreConditions() {
}