Merge "Added release notes for 'ContentHandler::runLegacyHooks' removal"
[mediawiki.git] / tests / parser / PhpunitTestRecorder.php
blob238d018eeeeac7b37c4898b397f8eb7a9245d6e3
1 <?php
3 class PhpunitTestRecorder extends TestRecorder {
4 private $testCase;
6 public function setTestCase( PHPUnit_Framework_TestCase $testCase ) {
7 $this->testCase = $testCase;
10 /**
11 * Mark a test skipped
13 public function skipped( $test, $reason ) {
14 $this->testCase->markTestSkipped( "SKIPPED: $reason" );