public static function PHPUnit_Util_Class::collectStart

Starts the collection of loaded classes.

2 calls to PHPUnit_Util_Class::collectStart()
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 65

Class

PHPUnit_Util_Class
Class helpers.

Code

public static function collectStart() {
  self::$buffer = get_declared_classes();
}