public function PHPUnit_Framework_TestCase::getSize in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpunit/phpunit/src/Framework/TestCase.php \PHPUnit_Framework_TestCase::getSize()
Returns the size of the test.
@since Method available since Release 3.6.0
Return value
int
1 call to PHPUnit_Framework_TestCase::getSize()
- PHPUnit_Framework_TestCase::handleDependencies in vendor/
phpunit/ phpunit/ src/ Framework/ TestCase.php - @since Method available since Release 3.5.4
File
- vendor/
phpunit/ phpunit/ src/ Framework/ TestCase.php, line 347
Class
- PHPUnit_Framework_TestCase
- A TestCase defines the fixture to run multiple tests.
Code
public function getSize() {
return PHPUnit_Util_Test::getSize(get_class($this), $this
->getName(false));
}