jenkins-bot has submitted this change and it was merged. (
https://gerrit.wikimedia.org/r/384040 )
Change subject: Remove meaningless @group WikibaseLexeme from all tests
......................................................................
Remove meaningless @group WikibaseLexeme from all tests
Look up the term "cargo cult programming". In my opinion this here is a
good example for that.
The basic idea if test groups is to be able to quickly and conveniently
run a specific subset of tests. But what subset defines a
"WikibaseLexeme" group? It's literally the entirety of the WikibaseLexeme
extension. This tag would need to be added to every single test. But why
should we do this, and take care of it? Note that it is already
inconsistently used (in most tests, but not in all of them). This was
obviously never a concenious decision. It was forgotten in a few cases,
but that never caused any issues anywhere – except somebody wants to use
it some day. It will not do what that person expects then.
If somebody wants to run the WikibaseLexeme tests, he can simply do this
based on the directory. Done.
Change-Id: I151eb3e04857fe6fb35a16c6538a005fb78c34ab
---
M tests/phpunit/composer/DataModel/FormIdTest.php
M tests/phpunit/composer/DataModel/FormSetTest.php
M tests/phpunit/composer/DataModel/FormTest.php
M tests/phpunit/composer/DataModel/LexemeIdTest.php
M tests/phpunit/composer/DataModel/LexemeTest.php
M tests/phpunit/composer/DataModel/SenseIdTest.php
M tests/phpunit/composer/DataModel/SenseTest.php
M
tests/phpunit/composer/DataModel/Serialization/ExternalLexemeSerializerTest.php
M tests/phpunit/composer/DataModel/Serialization/StorageLexemeSerializerTest.php
M tests/phpunit/composer/DataModel/Services/Diff/LexemeDifferPatcherTest.php
M tests/phpunit/composer/DataModel/Services/Diff/LexemeDifferTest.php
M tests/phpunit/composer/DataModel/Services/Diff/LexemePatcherTest.php
M tests/phpunit/mediawiki/Api/AddFormRequestParserResultTest.php
M tests/phpunit/mediawiki/Api/AddFormRequestParserTest.php
M tests/phpunit/mediawiki/Api/AddFormRequestTest.php
M tests/phpunit/mediawiki/Api/AddFormTest.php
M tests/phpunit/mediawiki/Api/LexemeEditEntityTest.php
M tests/phpunit/mediawiki/Api/LexemeGetEntitiesTest.php
M tests/phpunit/mediawiki/ChangeOp/ChangeOpLanguageTest.php
M tests/phpunit/mediawiki/ChangeOp/ChangeOpLemmaTest.php
M tests/phpunit/mediawiki/ChangeOp/ChangeOpLexicalCategoryTest.php
M
tests/phpunit/mediawiki/ChangeOp/Deserialization/LanguageChangeOpDeserializerTest.php
M
tests/phpunit/mediawiki/ChangeOp/Deserialization/LemmaChangeOpDeserializerTest.php
M
tests/phpunit/mediawiki/ChangeOp/Deserialization/LexemeChangeOpDeserializerTest.php
M
tests/phpunit/mediawiki/ChangeOp/Deserialization/LexicalCategoryChangeOpDeserializerTest.php
M tests/phpunit/mediawiki/Config/LexemeLanguageCodePropertyIdConfigTest.php
M tests/phpunit/mediawiki/Content/LexemeContentTest.php
M tests/phpunit/mediawiki/Content/LexemeHandlerTest.php
M tests/phpunit/mediawiki/DataModel/Serialization/LexemeDeserializerTest.php
M tests/phpunit/mediawiki/Search/LexemeFieldDefinitionsTest.php
M tests/phpunit/mediawiki/Validators/LexemeValidatorFactoryTest.php
M tests/phpunit/mediawiki/View/FormsViewTest.php
M tests/phpunit/mediawiki/View/LexemeViewFactoryTest.php
M tests/phpunit/mediawiki/View/LexemeViewTest.php
M tests/phpunit/mediawiki/View/SensesViewTest.php
M tests/phpunit/mediawiki/View/Template/LexemeTemplateFactoryTest.php
M tests/phpunit/mediawiki/View/TemplateModuleTest.php
M tests/phpunit/mediawiki/WikibaseLexemeHooksTest.php
38 files changed, 0 insertions(+), 72 deletions(-)
Approvals:
Addshore: Looks good to me, approved
jenkins-bot: Verified
diff --git a/tests/phpunit/composer/DataModel/FormIdTest.php
b/tests/phpunit/composer/DataModel/FormIdTest.php
index 57ae229..8d8741a 100644
--- a/tests/phpunit/composer/DataModel/FormIdTest.php
+++ b/tests/phpunit/composer/DataModel/FormIdTest.php
@@ -9,8 +9,6 @@
/**
* @covers \Wikibase\Lexeme\DataModel\FormId
*
- * @group WikibaseLexeme
- *
* @license GPL-2.0+
*/
class FormIdTest extends PHPUnit_Framework_TestCase {
diff --git a/tests/phpunit/composer/DataModel/FormSetTest.php
b/tests/phpunit/composer/DataModel/FormSetTest.php
index 796fbd9..b384c80 100644
--- a/tests/phpunit/composer/DataModel/FormSetTest.php
+++ b/tests/phpunit/composer/DataModel/FormSetTest.php
@@ -8,8 +8,6 @@
/**
* @covers \Wikibase\Lexeme\DataModel\FormSet
*
- * @group WikibaseLexeme
- *
* @license GPL-2.0+
*/
class FormSetTest extends \PHPUnit_Framework_TestCase {
diff --git a/tests/phpunit/composer/DataModel/FormTest.php
b/tests/phpunit/composer/DataModel/FormTest.php
index 0a80dd8..21a3c07 100644
--- a/tests/phpunit/composer/DataModel/FormTest.php
+++ b/tests/phpunit/composer/DataModel/FormTest.php
@@ -17,8 +17,6 @@
/**
* @covers \Wikibase\Lexeme\DataModel\Form
*
- * @group WikibaseLexeme
- *
* @license GPL-2.0+
*/
class FormTest extends PHPUnit_Framework_TestCase {
diff --git a/tests/phpunit/composer/DataModel/LexemeIdTest.php
b/tests/phpunit/composer/DataModel/LexemeIdTest.php
index 48905a3..8d0d461 100644
--- a/tests/phpunit/composer/DataModel/LexemeIdTest.php
+++ b/tests/phpunit/composer/DataModel/LexemeIdTest.php
@@ -9,8 +9,6 @@
/**
* @covers \Wikibase\Lexeme\DataModel\LexemeId
*
- * @group WikibaseLexeme
- *
* @license GPL-2.0+
*/
class LexemeIdTest extends \PHPUnit_Framework_TestCase {
diff --git a/tests/phpunit/composer/DataModel/LexemeTest.php
b/tests/phpunit/composer/DataModel/LexemeTest.php
index fbe1f0e..ab7845c 100644
--- a/tests/phpunit/composer/DataModel/LexemeTest.php
+++ b/tests/phpunit/composer/DataModel/LexemeTest.php
@@ -22,8 +22,6 @@
/**
* @covers \Wikibase\Lexeme\DataModel\Lexeme
*
- * @group WikibaseLexeme
- *
* @license GPL-2.0+
*/
class LexemeTest extends PHPUnit_Framework_TestCase {
diff --git a/tests/phpunit/composer/DataModel/SenseIdTest.php
b/tests/phpunit/composer/DataModel/SenseIdTest.php
index d65e428..336d88a 100644
--- a/tests/phpunit/composer/DataModel/SenseIdTest.php
+++ b/tests/phpunit/composer/DataModel/SenseIdTest.php
@@ -7,8 +7,6 @@
/**
* @covers \Wikibase\Lexeme\DataModel\SenseId
*
- * @group WikibaseLexeme
- *
* @license GPL-2.0+
*/
class SenseIdTest extends \PHPUnit_Framework_TestCase {
diff --git a/tests/phpunit/composer/DataModel/SenseTest.php
b/tests/phpunit/composer/DataModel/SenseTest.php
index 12973e2..07ba7ad 100644
--- a/tests/phpunit/composer/DataModel/SenseTest.php
+++ b/tests/phpunit/composer/DataModel/SenseTest.php
@@ -10,8 +10,6 @@
/**
* @covers \Wikibase\Lexeme\DataModel\Sense
*
- * @group WikibaseLexeme
- *
* @license GPL-2.0+
*/
class SenseTest extends \PHPUnit_Framework_TestCase {
diff --git
a/tests/phpunit/composer/DataModel/Serialization/ExternalLexemeSerializerTest.php
b/tests/phpunit/composer/DataModel/Serialization/ExternalLexemeSerializerTest.php
index e4d849d..d71a3b2 100644
---
a/tests/phpunit/composer/DataModel/Serialization/ExternalLexemeSerializerTest.php
+++
b/tests/phpunit/composer/DataModel/Serialization/ExternalLexemeSerializerTest.php
@@ -21,8 +21,6 @@
/**
* @covers \Wikibase\Lexeme\DataModel\Serialization\ExternalLexemeSerializer
*
- * @group WikibaseLexeme
- *
* @license GPL-2.0+
* @author Amir Sarabadani <[email protected]>
*/
diff --git
a/tests/phpunit/composer/DataModel/Serialization/StorageLexemeSerializerTest.php
b/tests/phpunit/composer/DataModel/Serialization/StorageLexemeSerializerTest.php
index a717ca1..1648362 100644
---
a/tests/phpunit/composer/DataModel/Serialization/StorageLexemeSerializerTest.php
+++
b/tests/phpunit/composer/DataModel/Serialization/StorageLexemeSerializerTest.php
@@ -31,8 +31,6 @@
/**
* @covers \Wikibase\Lexeme\DataModel\Serialization\StorageLexemeSerializer
*
- * @group WikibaseLexeme
- *
* @license GPL-2.0+
*/
class StorageLexemeSerializerTest extends \PHPUnit_Framework_TestCase {
diff --git
a/tests/phpunit/composer/DataModel/Services/Diff/LexemeDifferPatcherTest.php
b/tests/phpunit/composer/DataModel/Services/Diff/LexemeDifferPatcherTest.php
index 92fa9e8..c457d26 100644
--- a/tests/phpunit/composer/DataModel/Services/Diff/LexemeDifferPatcherTest.php
+++ b/tests/phpunit/composer/DataModel/Services/Diff/LexemeDifferPatcherTest.php
@@ -16,8 +16,6 @@
* @covers \Wikibase\Lexeme\DataModel\Services\Diff\LexemeDiffer
* @covers \Wikibase\Lexeme\DataModel\Services\Diff\LexemePatcher
*
- * @group WikibaseLexeme
- *
* @license GPL-2.0+
*/
class LexemeDifferPatcherTest extends \PHPUnit_Framework_TestCase {
diff --git
a/tests/phpunit/composer/DataModel/Services/Diff/LexemeDifferTest.php
b/tests/phpunit/composer/DataModel/Services/Diff/LexemeDifferTest.php
index 147acf0..b3e4935 100644
--- a/tests/phpunit/composer/DataModel/Services/Diff/LexemeDifferTest.php
+++ b/tests/phpunit/composer/DataModel/Services/Diff/LexemeDifferTest.php
@@ -20,8 +20,6 @@
/**
* @covers \Wikibase\Lexeme\DataModel\Services\Diff\LexemeDiffer
*
- * @group WikibaseLexeme
- *
* @license GPL-2.0+
*/
class LexemeDifferTest extends PHPUnit_Framework_TestCase {
diff --git
a/tests/phpunit/composer/DataModel/Services/Diff/LexemePatcherTest.php
b/tests/phpunit/composer/DataModel/Services/Diff/LexemePatcherTest.php
index 2cd2a4f..aa3b134 100644
--- a/tests/phpunit/composer/DataModel/Services/Diff/LexemePatcherTest.php
+++ b/tests/phpunit/composer/DataModel/Services/Diff/LexemePatcherTest.php
@@ -21,8 +21,6 @@
/**
* @covers \Wikibase\Lexeme\DataModel\Services\Diff\LexemePatcher
*
- * @group WikibaseLexeme
- *
* @license GPL-2.0+
* @author Amir Sarabadani <[email protected]>
*/
diff --git a/tests/phpunit/mediawiki/Api/AddFormRequestParserResultTest.php
b/tests/phpunit/mediawiki/Api/AddFormRequestParserResultTest.php
index 050dea4..dc6cc8b 100644
--- a/tests/phpunit/mediawiki/Api/AddFormRequestParserResultTest.php
+++ b/tests/phpunit/mediawiki/Api/AddFormRequestParserResultTest.php
@@ -9,8 +9,6 @@
/**
* @covers \Wikibase\Lexeme\Api\AddFormRequestParserResult
*
- * @group WikibaseLexeme
- *
* @license GPL-2.0+
*/
class AddFormRequestParserResultTest extends \PHPUnit_Framework_TestCase {
diff --git a/tests/phpunit/mediawiki/Api/AddFormRequestParserTest.php
b/tests/phpunit/mediawiki/Api/AddFormRequestParserTest.php
index 3f463c0..b003a0c 100644
--- a/tests/phpunit/mediawiki/Api/AddFormRequestParserTest.php
+++ b/tests/phpunit/mediawiki/Api/AddFormRequestParserTest.php
@@ -26,8 +26,6 @@
/**
* @covers \Wikibase\Lexeme\Api\AddFormRequestParser
*
- * @group WikibaseLexeme
- *
* @license GPL-2.0+
*/
class AddFormRequestParserTest extends \PHPUnit_Framework_TestCase {
diff --git a/tests/phpunit/mediawiki/Api/AddFormRequestTest.php
b/tests/phpunit/mediawiki/Api/AddFormRequestTest.php
index 5a10e76..e8e2488 100644
--- a/tests/phpunit/mediawiki/Api/AddFormRequestTest.php
+++ b/tests/phpunit/mediawiki/Api/AddFormRequestTest.php
@@ -12,8 +12,6 @@
/**
* @covers \Wikibase\Lexeme\Api\AddFormRequest
*
- * @group WikibaseLexeme
- *
* @license GPL-2.0+
*/
class AddFormRequestTest extends \PHPUnit_Framework_TestCase {
diff --git a/tests/phpunit/mediawiki/Api/AddFormTest.php
b/tests/phpunit/mediawiki/Api/AddFormTest.php
index f7a1cbc..5533ce8 100644
--- a/tests/phpunit/mediawiki/Api/AddFormTest.php
+++ b/tests/phpunit/mediawiki/Api/AddFormTest.php
@@ -18,7 +18,6 @@
*
* @group Database
* @group medium
- * @group WikibaseLexeme
*/
class AddFormTest extends WikibaseApiTestCase {
diff --git a/tests/phpunit/mediawiki/Api/LexemeEditEntityTest.php
b/tests/phpunit/mediawiki/Api/LexemeEditEntityTest.php
index f6405e3..973de3a 100644
--- a/tests/phpunit/mediawiki/Api/LexemeEditEntityTest.php
+++ b/tests/phpunit/mediawiki/Api/LexemeEditEntityTest.php
@@ -24,7 +24,6 @@
* @group WikibaseAPI
* @group Database
* @group medium
- * @group WikibaseLexeme
*/
class LexemeEditEntityTest extends WikibaseApiTestCase {
diff --git a/tests/phpunit/mediawiki/Api/LexemeGetEntitiesTest.php
b/tests/phpunit/mediawiki/Api/LexemeGetEntitiesTest.php
index 0b32af3..5fb40a7 100644
--- a/tests/phpunit/mediawiki/Api/LexemeGetEntitiesTest.php
+++ b/tests/phpunit/mediawiki/Api/LexemeGetEntitiesTest.php
@@ -18,7 +18,6 @@
*
* @group Database
* @group medium
- * @group WikibaseLexeme
*/
class LexemeGetEntitiesTest extends WikibaseApiTestCase {
diff --git a/tests/phpunit/mediawiki/ChangeOp/ChangeOpLanguageTest.php
b/tests/phpunit/mediawiki/ChangeOp/ChangeOpLanguageTest.php
index c3f4e21..5209374 100644
--- a/tests/phpunit/mediawiki/ChangeOp/ChangeOpLanguageTest.php
+++ b/tests/phpunit/mediawiki/ChangeOp/ChangeOpLanguageTest.php
@@ -15,8 +15,6 @@
/**
* @covers \Wikibase\Lexeme\ChangeOp\ChangeOpLanguage
*
- * @group WikibaseLexeme
- *
* @license GPL-2.0+
*/
class ChangeOpLanguageTest extends \PHPUnit_Framework_TestCase {
diff --git a/tests/phpunit/mediawiki/ChangeOp/ChangeOpLemmaTest.php
b/tests/phpunit/mediawiki/ChangeOp/ChangeOpLemmaTest.php
index a5098da..91b5292 100644
--- a/tests/phpunit/mediawiki/ChangeOp/ChangeOpLemmaTest.php
+++ b/tests/phpunit/mediawiki/ChangeOp/ChangeOpLemmaTest.php
@@ -17,8 +17,6 @@
/**
* @covers \Wikibase\Lexeme\ChangeOp\ChangeOpLemma
*
- * @group WikibaseLexeme
- *
* @license GPL-2.0+
*/
class ChangeOpLemmaTest extends \PHPUnit_Framework_TestCase {
diff --git a/tests/phpunit/mediawiki/ChangeOp/ChangeOpLexicalCategoryTest.php
b/tests/phpunit/mediawiki/ChangeOp/ChangeOpLexicalCategoryTest.php
index 3ab6ac6..065c606 100644
--- a/tests/phpunit/mediawiki/ChangeOp/ChangeOpLexicalCategoryTest.php
+++ b/tests/phpunit/mediawiki/ChangeOp/ChangeOpLexicalCategoryTest.php
@@ -15,8 +15,6 @@
/**
* @covers \Wikibase\Lexeme\ChangeOp\ChangeOpLexicalCategory
*
- * @group WikibaseLexeme
- *
* @license GPL-2.0+
*/
class ChangeOpLexicalCategoryTest extends \PHPUnit_Framework_TestCase {
diff --git
a/tests/phpunit/mediawiki/ChangeOp/Deserialization/LanguageChangeOpDeserializerTest.php
b/tests/phpunit/mediawiki/ChangeOp/Deserialization/LanguageChangeOpDeserializerTest.php
index bac1716..df387c2 100644
---
a/tests/phpunit/mediawiki/ChangeOp/Deserialization/LanguageChangeOpDeserializerTest.php
+++
b/tests/phpunit/mediawiki/ChangeOp/Deserialization/LanguageChangeOpDeserializerTest.php
@@ -15,8 +15,6 @@
/**
* @covers
\Wikibase\Lexeme\ChangeOp\Deserialization\LanguageChangeOpDeserializer
*
- * @group WikibaseLexeme
- *
* @license GPL-2.0+
*/
class LanguageChangeOpDeserializerTest extends \PHPUnit_Framework_TestCase {
diff --git
a/tests/phpunit/mediawiki/ChangeOp/Deserialization/LemmaChangeOpDeserializerTest.php
b/tests/phpunit/mediawiki/ChangeOp/Deserialization/LemmaChangeOpDeserializerTest.php
index 9e1f545..c680c62 100644
---
a/tests/phpunit/mediawiki/ChangeOp/Deserialization/LemmaChangeOpDeserializerTest.php
+++
b/tests/phpunit/mediawiki/ChangeOp/Deserialization/LemmaChangeOpDeserializerTest.php
@@ -18,8 +18,6 @@
/**
* @covers \Wikibase\Lexeme\ChangeOp\Deserialization\LemmaChangeOpDeserializer
*
- * @group WikibaseLexeme
- *
* @license GPL-2.0+
*/
class LemmaChangeOpDeserializerTest extends \PHPUnit_Framework_TestCase {
diff --git
a/tests/phpunit/mediawiki/ChangeOp/Deserialization/LexemeChangeOpDeserializerTest.php
b/tests/phpunit/mediawiki/ChangeOp/Deserialization/LexemeChangeOpDeserializerTest.php
index 3fbcd85..06244da 100644
---
a/tests/phpunit/mediawiki/ChangeOp/Deserialization/LexemeChangeOpDeserializerTest.php
+++
b/tests/phpunit/mediawiki/ChangeOp/Deserialization/LexemeChangeOpDeserializerTest.php
@@ -28,8 +28,6 @@
/**
* @covers \Wikibase\Lexeme\ChangeOp\Deserialization\LexemeChangeOpDeserializer
*
- * @group WikibaseLexeme
- *
* @license GPL-2.0+
*/
class LexemeChangeOpDeserializerTest extends \PHPUnit_Framework_TestCase {
diff --git
a/tests/phpunit/mediawiki/ChangeOp/Deserialization/LexicalCategoryChangeOpDeserializerTest.php
b/tests/phpunit/mediawiki/ChangeOp/Deserialization/LexicalCategoryChangeOpDeserializerTest.php
index 026203f..684fd98 100644
---
a/tests/phpunit/mediawiki/ChangeOp/Deserialization/LexicalCategoryChangeOpDeserializerTest.php
+++
b/tests/phpunit/mediawiki/ChangeOp/Deserialization/LexicalCategoryChangeOpDeserializerTest.php
@@ -15,8 +15,6 @@
/**
* @covers
\Wikibase\Lexeme\ChangeOp\Deserialization\LexicalCategoryChangeOpDeserializer
*
- * @group WikibaseLexeme
- *
* @license GPL-2.0+
*/
class LexicalCategoryChangeOpDeserializerTest extends
\PHPUnit_Framework_TestCase {
diff --git
a/tests/phpunit/mediawiki/Config/LexemeLanguageCodePropertyIdConfigTest.php
b/tests/phpunit/mediawiki/Config/LexemeLanguageCodePropertyIdConfigTest.php
index d0be33e..caabf77 100644
--- a/tests/phpunit/mediawiki/Config/LexemeLanguageCodePropertyIdConfigTest.php
+++ b/tests/phpunit/mediawiki/Config/LexemeLanguageCodePropertyIdConfigTest.php
@@ -10,8 +10,6 @@
/**
* @covers \Wikibase\Lexeme\Config\LexemeLanguageCodePropertyIdConfig
*
- * @group WikibaseLexeme
- *
* @license GPL-2.0+
*/
class LexemeLanguageCodePropertyIdConfigTest extends
PHPUnit_Framework_TestCase {
diff --git a/tests/phpunit/mediawiki/Content/LexemeContentTest.php
b/tests/phpunit/mediawiki/Content/LexemeContentTest.php
index aa19d98..a309553 100644
--- a/tests/phpunit/mediawiki/Content/LexemeContentTest.php
+++ b/tests/phpunit/mediawiki/Content/LexemeContentTest.php
@@ -15,8 +15,6 @@
/**
* @covers \Wikibase\Lexeme\Content\LexemeContent
*
- * @group WikibaseLexeme
- *
* @license GPL-2.0+
*/
class LexemeContentTest extends PHPUnit_Framework_TestCase {
diff --git a/tests/phpunit/mediawiki/Content/LexemeHandlerTest.php
b/tests/phpunit/mediawiki/Content/LexemeHandlerTest.php
index cc72d91..5e74a43 100644
--- a/tests/phpunit/mediawiki/Content/LexemeHandlerTest.php
+++ b/tests/phpunit/mediawiki/Content/LexemeHandlerTest.php
@@ -29,8 +29,6 @@
/**
* @covers \Wikibase\Lexeme\Content\LexemeHandler
*
- * @group WikibaseLexeme
- *
* @license GPL-2.0+
* @author Bene* < [email protected] >
*/
diff --git
a/tests/phpunit/mediawiki/DataModel/Serialization/LexemeDeserializerTest.php
b/tests/phpunit/mediawiki/DataModel/Serialization/LexemeDeserializerTest.php
index 3aeacef..cc03b3c 100644
--- a/tests/phpunit/mediawiki/DataModel/Serialization/LexemeDeserializerTest.php
+++ b/tests/phpunit/mediawiki/DataModel/Serialization/LexemeDeserializerTest.php
@@ -20,8 +20,6 @@
/**
* @covers \Wikibase\Lexeme\DataModel\Serialization\LexemeDeserializer
*
- * @group WikibaseLexeme
- *
* @license GPL-2.0+
* @author Amir Sarabadani <[email protected]>
*/
diff --git a/tests/phpunit/mediawiki/Search/LexemeFieldDefinitionsTest.php
b/tests/phpunit/mediawiki/Search/LexemeFieldDefinitionsTest.php
index f6735a1..53a7401 100644
--- a/tests/phpunit/mediawiki/Search/LexemeFieldDefinitionsTest.php
+++ b/tests/phpunit/mediawiki/Search/LexemeFieldDefinitionsTest.php
@@ -8,8 +8,6 @@
/**
* @covers \Wikibase\Lexeme\Search\LexemeFieldDefinitions
*
- * @group WikibaseLexeme
- *
* @license GPL-2.0+
* @author Katie Filbert < [email protected] >
*/
diff --git a/tests/phpunit/mediawiki/Validators/LexemeValidatorFactoryTest.php
b/tests/phpunit/mediawiki/Validators/LexemeValidatorFactoryTest.php
index 20800fe..d7b06a2 100644
--- a/tests/phpunit/mediawiki/Validators/LexemeValidatorFactoryTest.php
+++ b/tests/phpunit/mediawiki/Validators/LexemeValidatorFactoryTest.php
@@ -19,8 +19,6 @@
/**
* @covers \Wikibase\Lexeme\Validators\LexemeValidatorFactory
*
- * @group WikibaseLexeme
- *
* @license GPL-2.0+
*/
class LexemeValidatorFactoryTest extends \PHPUnit_Framework_TestCase {
diff --git a/tests/phpunit/mediawiki/View/FormsViewTest.php
b/tests/phpunit/mediawiki/View/FormsViewTest.php
index 20f75d8..52f5911 100644
--- a/tests/phpunit/mediawiki/View/FormsViewTest.php
+++ b/tests/phpunit/mediawiki/View/FormsViewTest.php
@@ -18,8 +18,6 @@
/**
* @covers \Wikibase\Lexeme\View\FormsView
*
- * @group WikibaseLexeme
- *
* @license GPL-2.0+
* @author Thiemo Kreuz
*/
diff --git a/tests/phpunit/mediawiki/View/LexemeViewFactoryTest.php
b/tests/phpunit/mediawiki/View/LexemeViewFactoryTest.php
index 92d3cf2..1f9f9eb 100644
--- a/tests/phpunit/mediawiki/View/LexemeViewFactoryTest.php
+++ b/tests/phpunit/mediawiki/View/LexemeViewFactoryTest.php
@@ -16,8 +16,6 @@
/**
* @covers \Wikibase\Lexeme\View\LexemeViewFactory
*
- * @group WikibaseLexeme
- *
* @license GPL-2.0+
* @author Thiemo Kreuz
*/
diff --git a/tests/phpunit/mediawiki/View/LexemeViewTest.php
b/tests/phpunit/mediawiki/View/LexemeViewTest.php
index 50c06b7..ea0a4c6 100644
--- a/tests/phpunit/mediawiki/View/LexemeViewTest.php
+++ b/tests/phpunit/mediawiki/View/LexemeViewTest.php
@@ -31,8 +31,6 @@
/**
* @covers \Wikibase\Lexeme\View\LexemeView
*
- * @group WikibaseLexeme
- *
* @license GPL-2.0+
* @author Amir Sarabadani <[email protected]>
* @author Thiemo Kreuz
diff --git a/tests/phpunit/mediawiki/View/SensesViewTest.php
b/tests/phpunit/mediawiki/View/SensesViewTest.php
index a9c2342..b189be2 100644
--- a/tests/phpunit/mediawiki/View/SensesViewTest.php
+++ b/tests/phpunit/mediawiki/View/SensesViewTest.php
@@ -17,8 +17,6 @@
/**
* @covers \Wikibase\Lexeme\View\SensesView
*
- * @group WikibaseLexeme
- *
* @license GPL-2.0+
*/
class SensesViewTest extends PHPUnit_Framework_TestCase {
diff --git
a/tests/phpunit/mediawiki/View/Template/LexemeTemplateFactoryTest.php
b/tests/phpunit/mediawiki/View/Template/LexemeTemplateFactoryTest.php
index ae66b12..7adfbf2 100644
--- a/tests/phpunit/mediawiki/View/Template/LexemeTemplateFactoryTest.php
+++ b/tests/phpunit/mediawiki/View/Template/LexemeTemplateFactoryTest.php
@@ -9,7 +9,6 @@
* @covers \Wikibase\Lexeme\View\Template\LexemeTemplateFactory
*
* @group WikibaseView
- * @group WikibaseLexeme
*
* @license GPL-2.0+
* @author Amir Sarabadani <[email protected]>
diff --git a/tests/phpunit/mediawiki/View/TemplateModuleTest.php
b/tests/phpunit/mediawiki/View/TemplateModuleTest.php
index 6e5c701..e6be1e3 100644
--- a/tests/phpunit/mediawiki/View/TemplateModuleTest.php
+++ b/tests/phpunit/mediawiki/View/TemplateModuleTest.php
@@ -8,8 +8,6 @@
/**
* @covers \Wikibase\Lexeme\View\TemplateModule
*
- * @group WikibaseLexeme
- *
* @license GPL-2.0+
*/
class TemplateModuleTest extends \PHPUnit_Framework_TestCase {
diff --git a/tests/phpunit/mediawiki/WikibaseLexemeHooksTest.php
b/tests/phpunit/mediawiki/WikibaseLexemeHooksTest.php
index 6f51109..5ea26ce 100644
--- a/tests/phpunit/mediawiki/WikibaseLexemeHooksTest.php
+++ b/tests/phpunit/mediawiki/WikibaseLexemeHooksTest.php
@@ -8,8 +8,6 @@
/**
* @covers \Wikibase\Lexeme\WikibaseLexemeHooks
*
- * @group WikibaseLexeme
- *
* @license GPL-2.0+
*/
class WikibaseLexemeHooksTest extends \PHPUnit_Framework_TestCase {
--
To view, visit https://gerrit.wikimedia.org/r/384040
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings
Gerrit-MessageType: merged
Gerrit-Change-Id: I151eb3e04857fe6fb35a16c6538a005fb78c34ab
Gerrit-PatchSet: 2
Gerrit-Project: mediawiki/extensions/WikibaseLexeme
Gerrit-Branch: master
Gerrit-Owner: Thiemo Mättig (WMDE) <[email protected]>
Gerrit-Reviewer: Addshore <[email protected]>
Gerrit-Reviewer: Aude <[email protected]>
Gerrit-Reviewer: Ladsgroup <[email protected]>
Gerrit-Reviewer: WMDE-leszek <[email protected]>
Gerrit-Reviewer: jenkins-bot <>
_______________________________________________
MediaWiki-commits mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits