public static function PHPUnit_Util_Class::collectEnd

Stops the collection of loaded classes and returns the names of the loaded classes.

Return value

array

2 calls to PHPUnit_Util_Class::collectEnd()
PHPUnit_Framework_TestSuite::addTestFile in drupal/core/vendor/phpunit/phpunit/PHPUnit/Framework/TestSuite.php
Wraps both <code>addTest()</code> and <code>addTestSuite</code> as well as the separate import statements for the user's convenience.
PHPUnit_Runner_StandardTestSuiteLoader::load in drupal/core/vendor/phpunit/phpunit/PHPUnit/Runner/StandardTestSuiteLoader.php

File

drupal/core/vendor/phpunit/phpunit/PHPUnit/Util/Class.php, line 76

Class

PHPUnit_Util_Class
Class helpers.

Code

public static function collectEnd() {
  return array_values(array_diff(get_declared_classes(), self::$buffer));
}