X-Git-Url: https://git.cyclocoop.org/%242?a=blobdiff_plain;f=tests%2Fparser%2FPhpunitTestRecorder.php;h=1a2cfc918de6b5ebaaa901dcab033a50dcb43607;hb=06a34d58957f5590c733a24d9ada510b5c3e5afd;hp=238d018eeeeac7b37c4898b397f8eb7a9245d6e3;hpb=a6c5f1a81599bc24005554f330f56d7a1b054d4b;p=lhc%2Fweb%2Fwiklou.git diff --git a/tests/parser/PhpunitTestRecorder.php b/tests/parser/PhpunitTestRecorder.php index 238d018eee..1a2cfc918d 100644 --- a/tests/parser/PhpunitTestRecorder.php +++ b/tests/parser/PhpunitTestRecorder.php @@ -3,12 +3,14 @@ class PhpunitTestRecorder extends TestRecorder { private $testCase; - public function setTestCase( PHPUnit_Framework_TestCase $testCase ) { + public function setTestCase( PHPUnit\Framework\TestCase $testCase ) { $this->testCase = $testCase; } /** * Mark a test skipped + * @param string $test + * @param string $reason */ public function skipped( $test, $reason ) { $this->testCase->markTestSkipped( "SKIPPED: $reason" );