Пример #1
0
 /**
  * Prints all groups (@group annotation) found in $suite
  *
  * @param ezpTestCase $suite
  */
 protected function listGroups($suite)
 {
     print "Available test group(s):\n";
     $groups = $suite->getGroups();
     sort($groups);
     foreach ($groups as $group) {
         print " - {$group}\n";
     }
 }