From 14f74d141ab5580688bfd46d2f74c026e43ed967 Mon Sep 17 00:00:00 2001 From: Pierre Schmitz Date: Wed, 1 Apr 2015 06:11:44 +0200 Subject: Update to MediaWiki 1.24.2 --- tests/parser/ParserTestResult.php | 45 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 tests/parser/ParserTestResult.php (limited to 'tests/parser/ParserTestResult.php') diff --git a/tests/parser/ParserTestResult.php b/tests/parser/ParserTestResult.php new file mode 100644 index 00000000..7d9415a2 --- /dev/null +++ b/tests/parser/ParserTestResult.php @@ -0,0 +1,45 @@ +description = $description; + } + + /** + * Whether the test passed + * @return bool + */ + public function isSuccess() { + return $this->expected === $this->actual; + } +} -- cgit v1.2.3-54-g00ecf