summaryrefslogtreecommitdiff
path: root/tests/parser/ParserTestResult.php
diff options
context:
space:
mode:
authorPierre Schmitz <pierre@archlinux.de>2014-04-25 06:26:49 +0200
committerPierre Schmitz <pierre@archlinux.de>2014-04-25 06:26:49 +0200
commit2e44b49a2db3026050b136de9b00f749dd3ff939 (patch)
treeef048f4db79a93c25cfc86319264aa7ae2a4ae0b /tests/parser/ParserTestResult.php
parent9441dde8bfb95277df073717ed7817dced40f948 (diff)
Update to MediaWiki 1.22.6
Diffstat (limited to 'tests/parser/ParserTestResult.php')
-rw-r--r--tests/parser/ParserTestResult.php42
1 files changed, 0 insertions, 42 deletions
diff --git a/tests/parser/ParserTestResult.php b/tests/parser/ParserTestResult.php
deleted file mode 100644
index d9ad773d..00000000
--- a/tests/parser/ParserTestResult.php
+++ /dev/null
@@ -1,42 +0,0 @@
-<?php
-/**
- * @copyright Copyright © 2013, Antoine Musso
- * @copyright Copyright © 2013, Wikimedia Foundation Inc.
- * @license GNU GPL v2
- *
- * @file
- */
-
-/**
- * Represent the result of a parser test.
- *
- * @since 1.22
- */
-class ParserTestResult {
- /**
- * Description of the parser test.
- *
- * This is usually the text used to describe a parser test in the .txt
- * files. It is initialized on a construction and you most probably
- * never want to change it.
- */
- public $description;
- /** Text that was expected */
- public $expected;
- /** Actual text rendered */
- public $actual;
-
- /**
- * @param $description string A short text describing the parser test
- * usually the text in the parser test .txt file. The description
- * is later available using the property $description.
- */
- public function __construct( $description ) {
- $this->description = $description;
- }
-
- /** Whether the test passed */
- public function isSuccess() {
- return $this->expected === $this->actual;
- }
-}