adding @group Database to more tests
authordaniel <daniel.kinzler@wikimedia.de>
Wed, 5 Sep 2012 16:54:15 +0000 (18:54 +0200)
committerdaniel <daniel.kinzler@wikimedia.de>
Wed, 5 Sep 2012 16:54:15 +0000 (18:54 +0200)
Change-Id: If1b63f8be80fdc18ccc3dc526f82f7684c5cf50b

tests/phpunit/includes/CssContentTest.php
tests/phpunit/includes/JavascriptContentTest.php
tests/phpunit/includes/TitleTest.php
tests/phpunit/includes/WikitextContentTest.php

index 64945f8..163ce48 100644 (file)
@@ -2,6 +2,9 @@
 
 /**
  * @group ContentHandler
+ *
+ * @group Database
+ *        ^--- needed, because we do need the database to test link updates
  */
 class CssContentTest extends JavascriptContentTest {
 
index da03d62..f8a9bdf 100644 (file)
@@ -2,6 +2,9 @@
 
 /**
  * @group ContentHandler
+ *
+ * @group Database
+ *        ^--- needed, because we do need the database to test link updates
  */
 class JavascriptContentTest extends WikitextContentTest {
 
index f61652d..2a8ec44 100644 (file)
@@ -1,5 +1,10 @@
 <?php
 
+/**
+ *
+ * @group Database
+ *        ^--- needed for language cache stuff
+ */
 class TitleTest extends MediaWikiTestCase {
 
        function testLegalChars() {
index fd1f886..942e152 100644 (file)
@@ -2,6 +2,9 @@
 
 /**
  * @group ContentHandler
+ *
+ * @group Database
+ *        ^--- needed, because we do need the database to test link updates
  */
 class WikitextContentTest extends MediaWikiTestCase {