public function PHPUnit_Framework_TestSuite::getGroups

Returns the test groups of the suite.

@since Method available since Release 3.2.0

Return value

array

File

drupal/core/vendor/phpunit/phpunit/PHPUnit/Framework/TestSuite.php, line 611

Class

PHPUnit_Framework_TestSuite
A TestSuite is a composite of Tests. It runs a collection of test cases.

Code

public function getGroups() {
  return array_keys($this->groups);
}