public function PHPUnit_Framework_TestCase::getSize

Returns the size of the test.

@since Method available since Release 3.6.0

Return value

integer

1 call to PHPUnit_Framework_TestCase::getSize()
PHPUnit_Framework_TestCase::handleDependencies in drupal/core/vendor/phpunit/phpunit/PHPUnit/Framework/TestCase.php
@since Method available since Release 3.5.4

File

drupal/core/vendor/phpunit/phpunit/PHPUnit/Framework/TestCase.php, line 370

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));
}