Lines Matching refs:test

116      * @param PHPUnit_Framework_Test $test
120 public function addError(PHPUnit_Framework_Test $test, Exception $e, $time) argument
122 if (!$this->isOfInterest($test)) {
133 * @param PHPUnit_Framework_Test $test
137 public function addWarning(PHPUnit_Framework_Test $test, PHPUnit_Framework_Warning $e, $time) argument
139 if (!$this->isOfInterest($test)) {
150 * @param PHPUnit_Framework_Test $test
154 …public function addFailure(PHPUnit_Framework_Test $test, PHPUnit_Framework_AssertionFailedError $e… argument
156 if (!$this->isOfInterest($test)) {
167 * @param PHPUnit_Framework_Test $test
171 public function addIncompleteTest(PHPUnit_Framework_Test $test, Exception $e, $time) argument
173 if (!$this->isOfInterest($test)) {
184 * @param PHPUnit_Framework_Test $test
188 public function addRiskyTest(PHPUnit_Framework_Test $test, Exception $e, $time) argument
190 if (!$this->isOfInterest($test)) {
201 * @param PHPUnit_Framework_Test $test
205 public function addSkippedTest(PHPUnit_Framework_Test $test, Exception $e, $time) argument
207 if (!$this->isOfInterest($test)) {
236 * @param PHPUnit_Framework_Test $test
238 public function startTest(PHPUnit_Framework_Test $test) argument
240 if (!$this->isOfInterest($test)) {
244 $class = get_class($test);
264 $annotations = $test->getAnnotations();
269 … $this->currentTestMethodPrettified = $this->prettifier->prettifyTestMethod($test->getName(false));
272 if ($test instanceof PHPUnit_Framework_TestCase && $test->usesDataProvider()) {
273 $this->currentTestMethodPrettified .= ' ' . $test->dataDescription();
282 * @param PHPUnit_Framework_Test $test
285 public function endTest(PHPUnit_Framework_Test $test, $time) argument
287 if (!$this->isOfInterest($test)) {
363 * @param PHPUnit_Framework_Test $test
367 private function isOfInterest(PHPUnit_Framework_Test $test) argument
369 if (!$test instanceof PHPUnit_Framework_TestCase) {
373 if ($test instanceof PHPUnit_Framework_WarningTestCase) {
378 foreach ($test->getGroups() as $group) {
388 foreach ($test->getGroups() as $group) {