Merge "Move up devunt's name to Developers"
[lhc/web/wiklou.git] / tests / parser / PhpunitTestRecorder.php
1 <?php
2
3 class PhpunitTestRecorder extends TestRecorder {
4 private $testCase;
5
6 public function setTestCase( PHPUnit_Framework_TestCase $testCase ) {
7 $this->testCase = $testCase;
8 }
9
10 /**
11 * Mark a test skipped
12 */
13 public function skipped( $test, $reason ) {
14 $this->testCase->markTestSkipped( "SKIPPED: $reason" );
15 }
16 }