public function PHPUnit_Framework_TestResult::passed

Returns the names of the tests that have passed.

@since Method available since Release 3.4.0

Return value

array

File

drupal/core/vendor/phpunit/phpunit/PHPUnit/Framework/TestResult.php, line 527

Class

PHPUnit_Framework_TestResult
A TestResult collects the results of executing a test case.

Code

public function passed() {
  return $this->passed;
}