Lines Matching refs:test

62      * @param PHPUnit_Framework_Test $test
66 public function addError(PHPUnit_Framework_Test $test, Exception $e, $time) argument
74 * @param PHPUnit_Framework_Test $test
78 public function addWarning(PHPUnit_Framework_Test $test, PHPUnit_Framework_Warning $e, $time) argument
85 * @param PHPUnit_Framework_Test $test
89 …public function addFailure(PHPUnit_Framework_Test $test, PHPUnit_Framework_AssertionFailedError $e… argument
97 * @param PHPUnit_Framework_Test $test
101 public function addIncompleteTest(PHPUnit_Framework_Test $test, Exception $e, $time) argument
108 * @param PHPUnit_Framework_Test $test
112 public function addRiskyTest(PHPUnit_Framework_Test $test, Exception $e, $time) argument
119 * @param PHPUnit_Framework_Test $test
123 public function addSkippedTest(PHPUnit_Framework_Test $test, Exception $e, $time) argument
148 * @param PHPUnit_Framework_Test $test
150 public function startTest(PHPUnit_Framework_Test $test) argument
158 * @param PHPUnit_Framework_Test $test
161 public function endTest(PHPUnit_Framework_Test $test, $time) argument
163 if (!$test instanceof PHPUnit_Framework_TestCase) {
170 $test->getGroups(),
182 $node->setAttribute('className', get_class($test));
183 $node->setAttribute('methodName', $test->getName());
184 …$node->setAttribute('prettifiedClassName', $this->prettifier->prettifyTestClass(get_class($test)));
185 …$node->setAttribute('prettifiedMethodName', $this->prettifier->prettifyTestMethod($test->getName()…
186 $node->setAttribute('status', $test->getStatus());
188 $node->setAttribute('size', $test->getSize());
191 … $inlineAnnotations = PHPUnit_Util_Test::getInlineAnnotations(get_class($test), $test->getName());
209 $class = new ReflectionClass($test);