From d24a26e713082d4d22518be3fe361c72224f103e Mon Sep 17 00:00:00 2001 From: Antoine Musso Date: Tue, 31 May 2011 19:51:48 +0000 Subject: [PATCH] NewParserTest.php can now work independently PHPUnit load class according to their order on the filesystem I guess. On the cruisecontrol host, it first load NewParserTest.php and run the test then load MediaWikiParserTest.php which run the tests too! On my host the order is reversed, and NewParserTest.php is never run for a reason I have not investigated. Anyway, deleting the MediaWikiParserTest.php is harmless since it is redundant with NewParserTest.php (should fix cruise control) --- .../includes/parser/MediaWikiParserTest.php | 35 ------------------- 1 file changed, 35 deletions(-) delete mode 100644 tests/phpunit/includes/parser/MediaWikiParserTest.php diff --git a/tests/phpunit/includes/parser/MediaWikiParserTest.php b/tests/phpunit/includes/parser/MediaWikiParserTest.php deleted file mode 100644 index 8d6230d188..0000000000 --- a/tests/phpunit/includes/parser/MediaWikiParserTest.php +++ /dev/null @@ -1,35 +0,0 @@ -addTestSuite( new ReflectionClass ( $parserTester ) ); - } - - - return $suite; - } -} -- 2.20.1