summaryrefslogtreecommitdiff
path: root/www/wiki/tests/parser/PhpunitTestRecorder.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/tests/parser/PhpunitTestRecorder.php')
-rw-r--r--www/wiki/tests/parser/PhpunitTestRecorder.php18
1 files changed, 18 insertions, 0 deletions
diff --git a/www/wiki/tests/parser/PhpunitTestRecorder.php b/www/wiki/tests/parser/PhpunitTestRecorder.php
new file mode 100644
index 00000000..1a2cfc91
--- /dev/null
+++ b/www/wiki/tests/parser/PhpunitTestRecorder.php
@@ -0,0 +1,18 @@
+<?php
+
+class PhpunitTestRecorder extends TestRecorder {
+ private $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" );
+ }
+}