You are here

public static function PHPUnit_Framework_Assert::resetCount in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpunit/phpunit/src/Framework/Assert.php \PHPUnit_Framework_Assert::resetCount()

Reset the assertion counter.

@since Method available since Release 3.3.3

1 call to PHPUnit_Framework_Assert::resetCount()
PHPUnit_Framework_TestResult::run in vendor/phpunit/phpunit/src/Framework/TestResult.php
Runs a TestCase.

File

vendor/phpunit/phpunit/src/Framework/Assert.php, line 3017

Class

PHPUnit_Framework_Assert
A set of assert methods.

Code

public static function resetCount() {
  self::$count = 0;
}