public static function PHPUnit_Framework_Assert::getCount in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpunit/phpunit/src/Framework/Assert.php \PHPUnit_Framework_Assert::getCount()
Return the current assertion count.
@since Method available since Release 3.3.3
Return value
int
1 call to PHPUnit_Framework_Assert::getCount()
- PHPUnit_Framework_TestResult::run in vendor/
phpunit/ phpunit/ src/ Framework/ TestResult.php - Runs a TestCase.
File
- vendor/
phpunit/ phpunit/ src/ Framework/ Assert.php, line 3007
Class
- PHPUnit_Framework_Assert
- A set of assert methods.
Code
public static function getCount() {
return self::$count;
}