Thiemo Mättig (WMDE) has uploaded a new change for review.

  https://gerrit.wikimedia.org/r/251300

Change subject: Add @covers tags for abstract base classes in repo
......................................................................

Add @covers tags for abstract base classes in repo

I'm focusing on abstract classes that are reported as "top project
risks" by PHPUnits coverage report.

I did not checked if a specific test contains test cases that are
supposed to test code from a base class. This would be possible but
is (at least at the moment) not necesarry in my opinion. I'm simply
adding the whole chain of base classes as @covers tags.

Change-Id: I63f0309b7b1d9812994c225b50f9f8650481f35f
---
M repo/tests/phpunit/includes/Dumpers/JsonDumpGeneratorTest.php
M repo/tests/phpunit/includes/Dumpers/RdfDumpGeneratorTest.php
M repo/tests/phpunit/includes/ParserOutput/GeoDataDataUpdaterTest.php
M repo/tests/phpunit/includes/PropertyDataTypeChangerTest.php
M repo/tests/phpunit/includes/UpdateRepo/UpdateRepoOnDeleteJobTest.php
M repo/tests/phpunit/includes/UpdateRepo/UpdateRepoOnMoveJobTest.php
M repo/tests/phpunit/includes/api/EditEntityTest.php
M repo/tests/phpunit/includes/api/SetAliasesTest.php
M repo/tests/phpunit/includes/api/SetDescriptionTest.php
M repo/tests/phpunit/includes/api/SetLabelTest.php
M repo/tests/phpunit/includes/api/SetSiteLinkTest.php
M repo/tests/phpunit/includes/content/ItemContentTest.php
M repo/tests/phpunit/includes/content/ItemHandlerTest.php
M repo/tests/phpunit/includes/content/PropertyContentTest.php
M repo/tests/phpunit/includes/content/PropertyHandlerTest.php
M repo/tests/phpunit/includes/specials/SpecialEntitiesWithoutPageTest.php
M repo/tests/phpunit/includes/specials/SpecialEntityDataTest.php
M repo/tests/phpunit/includes/specials/SpecialGoToLinkedPageTest.php
M repo/tests/phpunit/includes/specials/SpecialItemByTitleTest.php
M repo/tests/phpunit/includes/specials/SpecialItemDisambiguationTest.php
M repo/tests/phpunit/includes/specials/SpecialItemsWithoutSitelinksTest.php
M repo/tests/phpunit/includes/specials/SpecialListDatatypesTest.php
M repo/tests/phpunit/includes/specials/SpecialListPropertiesTest.php
M repo/tests/phpunit/includes/specials/SpecialMergeItemsTest.php
M repo/tests/phpunit/includes/specials/SpecialNewItemTest.php
M repo/tests/phpunit/includes/specials/SpecialNewPropertyTest.php
M repo/tests/phpunit/includes/specials/SpecialRedirectEntityTest.php
M repo/tests/phpunit/includes/specials/SpecialSetAliasesTest.php
M repo/tests/phpunit/includes/specials/SpecialSetDescriptionTest.php
M repo/tests/phpunit/includes/specials/SpecialSetLabelDescriptionAliasesTest.php
M repo/tests/phpunit/includes/specials/SpecialSetLabelTest.php
M repo/tests/phpunit/includes/specials/SpecialSetSiteLinkTest.php
32 files changed, 54 insertions(+), 2 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/Wikibase 
refs/changes/00/251300/1

diff --git a/repo/tests/phpunit/includes/Dumpers/JsonDumpGeneratorTest.php 
b/repo/tests/phpunit/includes/Dumpers/JsonDumpGeneratorTest.php
index 6ed8afc..e777f9d 100644
--- a/repo/tests/phpunit/includes/Dumpers/JsonDumpGeneratorTest.php
+++ b/repo/tests/phpunit/includes/Dumpers/JsonDumpGeneratorTest.php
@@ -24,6 +24,7 @@
 
 /**
  * @covers Wikibase\Dumpers\JsonDumpGenerator
+ * @covers Wikibase\Dumpers\DumpGenerator
  *
  * @group Wikibase
  * @group WikibaseRepo
diff --git a/repo/tests/phpunit/includes/Dumpers/RdfDumpGeneratorTest.php 
b/repo/tests/phpunit/includes/Dumpers/RdfDumpGeneratorTest.php
index 17af38c..04645bb 100644
--- a/repo/tests/phpunit/includes/Dumpers/RdfDumpGeneratorTest.php
+++ b/repo/tests/phpunit/includes/Dumpers/RdfDumpGeneratorTest.php
@@ -19,6 +19,7 @@
 
 /**
  * @covers Wikibase\Dumpers\RdfDumpGenerator
+ * @covers Wikibase\Dumpers\DumpGenerator
  *
  * @group Wikibase
  * @group WikibaseRepo
diff --git 
a/repo/tests/phpunit/includes/ParserOutput/GeoDataDataUpdaterTest.php 
b/repo/tests/phpunit/includes/ParserOutput/GeoDataDataUpdaterTest.php
index 705ae57..2e20fc0 100644
--- a/repo/tests/phpunit/includes/ParserOutput/GeoDataDataUpdaterTest.php
+++ b/repo/tests/phpunit/includes/ParserOutput/GeoDataDataUpdaterTest.php
@@ -21,7 +21,7 @@
 use Wikibase\Repo\ParserOutput\GeoDataDataUpdater;
 
 /**
- * @covers Wikibase\Repo\ParserOutput\GeoDataDataUpdater;
+ * @covers Wikibase\Repo\ParserOutput\GeoDataDataUpdater
  *
  * @group Wikibase
  * @group WikibaseRepo
diff --git a/repo/tests/phpunit/includes/PropertyDataTypeChangerTest.php 
b/repo/tests/phpunit/includes/PropertyDataTypeChangerTest.php
index 3a851a8..b02a50c 100644
--- a/repo/tests/phpunit/includes/PropertyDataTypeChangerTest.php
+++ b/repo/tests/phpunit/includes/PropertyDataTypeChangerTest.php
@@ -13,7 +13,7 @@
 use Wikibase\Repo\PropertyDataTypeChanger;
 
 /**
- * @covers Wikibase\Repo\PropertyDataTypeChanger;
+ * @covers Wikibase\Repo\PropertyDataTypeChanger
  *
  * @since 0.5
  *
diff --git 
a/repo/tests/phpunit/includes/UpdateRepo/UpdateRepoOnDeleteJobTest.php 
b/repo/tests/phpunit/includes/UpdateRepo/UpdateRepoOnDeleteJobTest.php
index e2b7ec8..02e4cbc 100644
--- a/repo/tests/phpunit/includes/UpdateRepo/UpdateRepoOnDeleteJobTest.php
+++ b/repo/tests/phpunit/includes/UpdateRepo/UpdateRepoOnDeleteJobTest.php
@@ -13,6 +13,7 @@
 
 /**
  * @covers Wikibase\Repo\UpdateRepo\UpdateRepoOnDeleteJob
+ * @covers Wikibase\Repo\UpdateRepo\UpdateRepoJob
  *
  * @group Wikibase
  * @group WikibaseRepo
diff --git a/repo/tests/phpunit/includes/UpdateRepo/UpdateRepoOnMoveJobTest.php 
b/repo/tests/phpunit/includes/UpdateRepo/UpdateRepoOnMoveJobTest.php
index c03a035..c5ebbdf 100644
--- a/repo/tests/phpunit/includes/UpdateRepo/UpdateRepoOnMoveJobTest.php
+++ b/repo/tests/phpunit/includes/UpdateRepo/UpdateRepoOnMoveJobTest.php
@@ -13,6 +13,7 @@
 
 /**
  * @covers Wikibase\Repo\UpdateRepo\UpdateRepoOnMoveJob
+ * @covers Wikibase\Repo\UpdateRepo\UpdateRepoJob
  *
  * @group Wikibase
  * @group WikibaseRepo
diff --git a/repo/tests/phpunit/includes/api/EditEntityTest.php 
b/repo/tests/phpunit/includes/api/EditEntityTest.php
index d0f3893..8afcbfa 100644
--- a/repo/tests/phpunit/includes/api/EditEntityTest.php
+++ b/repo/tests/phpunit/includes/api/EditEntityTest.php
@@ -8,6 +8,7 @@
 
 /**
  * @covers Wikibase\Repo\Api\EditEntity
+ * @covers Wikibase\Repo\Api\ModifyEntity
  *
  * @licence GNU GPL v2+
  * @author Adam Shorland
diff --git a/repo/tests/phpunit/includes/api/SetAliasesTest.php 
b/repo/tests/phpunit/includes/api/SetAliasesTest.php
index 70c8e01..ee5abbe 100644
--- a/repo/tests/phpunit/includes/api/SetAliasesTest.php
+++ b/repo/tests/phpunit/includes/api/SetAliasesTest.php
@@ -4,6 +4,7 @@
 
 /**
  * @covers Wikibase\Repo\Api\SetAliases
+ * @covers Wikibase\Repo\Api\ModifyEntity
  *
  * @group Database
  * @group medium
diff --git a/repo/tests/phpunit/includes/api/SetDescriptionTest.php 
b/repo/tests/phpunit/includes/api/SetDescriptionTest.php
index 0b39162..c7abbdb 100644
--- a/repo/tests/phpunit/includes/api/SetDescriptionTest.php
+++ b/repo/tests/phpunit/includes/api/SetDescriptionTest.php
@@ -4,6 +4,8 @@
 
 /**
  * @covers Wikibase\Repo\Api\SetDescription
+ * @covers Wikibase\Repo\Api\ModifyTerm
+ * @covers Wikibase\Repo\Api\ModifyEntity
  *
  * @group Database
  * @group medium
diff --git a/repo/tests/phpunit/includes/api/SetLabelTest.php 
b/repo/tests/phpunit/includes/api/SetLabelTest.php
index fcbd2ca..45efe71 100644
--- a/repo/tests/phpunit/includes/api/SetLabelTest.php
+++ b/repo/tests/phpunit/includes/api/SetLabelTest.php
@@ -4,6 +4,8 @@
 
 /**
  * @covers Wikibase\Repo\Api\SetLabel
+ * @covers Wikibase\Repo\Api\ModifyTerm
+ * @covers Wikibase\Repo\Api\ModifyEntity
  *
  * @group Database
  * @group medium
diff --git a/repo/tests/phpunit/includes/api/SetSiteLinkTest.php 
b/repo/tests/phpunit/includes/api/SetSiteLinkTest.php
index 5c5586c..65ea526 100644
--- a/repo/tests/phpunit/includes/api/SetSiteLinkTest.php
+++ b/repo/tests/phpunit/includes/api/SetSiteLinkTest.php
@@ -8,6 +8,7 @@
 
 /**
  * @covers Wikibase\Repo\Api\SetSiteLink
+ * @covers Wikibase\Repo\Api\ModifyEntity
  *
  * @licence GNU GPL v2+
  * @author John Erling Blad < [email protected] >
diff --git a/repo/tests/phpunit/includes/content/ItemContentTest.php 
b/repo/tests/phpunit/includes/content/ItemContentTest.php
index ae9a9e8..c8a707e 100644
--- a/repo/tests/phpunit/includes/content/ItemContentTest.php
+++ b/repo/tests/phpunit/includes/content/ItemContentTest.php
@@ -23,6 +23,7 @@
 
 /**
  * @covers Wikibase\ItemContent
+ * @covers Wikibase\EntityContent
  *
  * @group Wikibase
  * @group WikibaseItem
diff --git a/repo/tests/phpunit/includes/content/ItemHandlerTest.php 
b/repo/tests/phpunit/includes/content/ItemHandlerTest.php
index beae8aa..dcbba26 100644
--- a/repo/tests/phpunit/includes/content/ItemHandlerTest.php
+++ b/repo/tests/phpunit/includes/content/ItemHandlerTest.php
@@ -15,6 +15,7 @@
 
 /**
  * @covers Wikibase\Repo\Content\ItemHandler
+ * @covers Wikibase\Repo\Content\EntityHandler
  *
  * @group Wikibase
  * @group WikibaseRepo
diff --git a/repo/tests/phpunit/includes/content/PropertyContentTest.php 
b/repo/tests/phpunit/includes/content/PropertyContentTest.php
index c80974a..aae29b4 100644
--- a/repo/tests/phpunit/includes/content/PropertyContentTest.php
+++ b/repo/tests/phpunit/includes/content/PropertyContentTest.php
@@ -10,6 +10,7 @@
 
 /**
  * @covers Wikibase\PropertyContent
+ * @covers Wikibase\EntityContent
  *
  * @group Database
  * @group Wikibase
diff --git a/repo/tests/phpunit/includes/content/PropertyHandlerTest.php 
b/repo/tests/phpunit/includes/content/PropertyHandlerTest.php
index c05f53f..8f9bdae 100644
--- a/repo/tests/phpunit/includes/content/PropertyHandlerTest.php
+++ b/repo/tests/phpunit/includes/content/PropertyHandlerTest.php
@@ -12,6 +12,7 @@
 
 /**
  * @covers Wikibase\Repo\Content\PropertyHandler
+ * @covers Wikibase\Repo\Content\EntityHandler
  *
  * @group Wikibase
  * @group WikibaseRepo
diff --git 
a/repo/tests/phpunit/includes/specials/SpecialEntitiesWithoutPageTest.php 
b/repo/tests/phpunit/includes/specials/SpecialEntitiesWithoutPageTest.php
index 1c5171d..2e68a54 100644
--- a/repo/tests/phpunit/includes/specials/SpecialEntitiesWithoutPageTest.php
+++ b/repo/tests/phpunit/includes/specials/SpecialEntitiesWithoutPageTest.php
@@ -8,6 +8,8 @@
 
 /**
  * @covers Wikibase\Repo\Specials\SpecialEntitiesWithoutPage
+ * @covers Wikibase\Repo\Specials\SpecialWikibaseQueryPage
+ * @covers Wikibase\Repo\Specials\SpecialWikibasePage
  *
  * @group Wikibase
  * @group WikibaseRepo
diff --git a/repo/tests/phpunit/includes/specials/SpecialEntityDataTest.php 
b/repo/tests/phpunit/includes/specials/SpecialEntityDataTest.php
index 0e1e552..1fd9ed7 100644
--- a/repo/tests/phpunit/includes/specials/SpecialEntityDataTest.php
+++ b/repo/tests/phpunit/includes/specials/SpecialEntityDataTest.php
@@ -21,6 +21,7 @@
 
 /**
  * @covers Wikibase\Repo\Specials\SpecialEntityData
+ * @covers Wikibase\Repo\Specials\SpecialWikibasePage
  *
  * @group Database
  *
diff --git a/repo/tests/phpunit/includes/specials/SpecialGoToLinkedPageTest.php 
b/repo/tests/phpunit/includes/specials/SpecialGoToLinkedPageTest.php
index 48d9d08..0f48441 100644
--- a/repo/tests/phpunit/includes/specials/SpecialGoToLinkedPageTest.php
+++ b/repo/tests/phpunit/includes/specials/SpecialGoToLinkedPageTest.php
@@ -14,6 +14,7 @@
 
 /**
  * @covers Wikibase\Repo\Specials\SpecialGoToLinkedPage
+ * @covers Wikibase\Repo\Specials\SpecialWikibasePage
  *
  * @group Wikibase
  * @group WikibaseRepo
diff --git a/repo/tests/phpunit/includes/specials/SpecialItemByTitleTest.php 
b/repo/tests/phpunit/includes/specials/SpecialItemByTitleTest.php
index 1878525..bce0b11 100644
--- a/repo/tests/phpunit/includes/specials/SpecialItemByTitleTest.php
+++ b/repo/tests/phpunit/includes/specials/SpecialItemByTitleTest.php
@@ -14,6 +14,7 @@
 
 /**
  * @covers Wikibase\Repo\Specials\SpecialItemByTitle
+ * @covers Wikibase\Repo\Specials\SpecialWikibasePage
  *
  * @group Wikibase
  * @group WikibaseRepo
diff --git 
a/repo/tests/phpunit/includes/specials/SpecialItemDisambiguationTest.php 
b/repo/tests/phpunit/includes/specials/SpecialItemDisambiguationTest.php
index 3f41bc7..5d7fba9 100644
--- a/repo/tests/phpunit/includes/specials/SpecialItemDisambiguationTest.php
+++ b/repo/tests/phpunit/includes/specials/SpecialItemDisambiguationTest.php
@@ -12,6 +12,7 @@
 
 /**
  * @covers Wikibase\Repo\Specials\SpecialItemDisambiguation
+ * @covers Wikibase\Repo\Specials\SpecialWikibasePage
  *
  * @group Wikibase
  * @group WikibaseRepo
diff --git 
a/repo/tests/phpunit/includes/specials/SpecialItemsWithoutSitelinksTest.php 
b/repo/tests/phpunit/includes/specials/SpecialItemsWithoutSitelinksTest.php
index 599c478..e23983f 100644
--- a/repo/tests/phpunit/includes/specials/SpecialItemsWithoutSitelinksTest.php
+++ b/repo/tests/phpunit/includes/specials/SpecialItemsWithoutSitelinksTest.php
@@ -7,6 +7,8 @@
 
 /**
  * @covers Wikibase\Repo\Specials\SpecialItemsWithoutSitelinks
+ * @covers Wikibase\Repo\Specials\SpecialWikibaseQueryPage
+ * @covers Wikibase\Repo\Specials\SpecialWikibasePage
  *
  * @group Wikibase
  * @group WikibaseRepo
diff --git a/repo/tests/phpunit/includes/specials/SpecialListDatatypesTest.php 
b/repo/tests/phpunit/includes/specials/SpecialListDatatypesTest.php
index bd86186..5526132 100644
--- a/repo/tests/phpunit/includes/specials/SpecialListDatatypesTest.php
+++ b/repo/tests/phpunit/includes/specials/SpecialListDatatypesTest.php
@@ -7,6 +7,7 @@
 
 /**
  * @covers Wikibase\Repo\Specials\SpecialListDatatypes
+ * @covers Wikibase\Repo\Specials\SpecialWikibasePage
  *
  * @group Wikibase
  * @group WikibaseRepo
diff --git a/repo/tests/phpunit/includes/specials/SpecialListPropertiesTest.php 
b/repo/tests/phpunit/includes/specials/SpecialListPropertiesTest.php
index 266120e..1d1bbcf 100644
--- a/repo/tests/phpunit/includes/specials/SpecialListPropertiesTest.php
+++ b/repo/tests/phpunit/includes/specials/SpecialListPropertiesTest.php
@@ -16,6 +16,8 @@
 
 /**
  * @covers Wikibase\Repo\Specials\SpecialListProperties
+ * @covers Wikibase\Repo\Specials\SpecialWikibaseQueryPage
+ * @covers Wikibase\Repo\Specials\SpecialWikibasePage
  *
  * @group Database
  * @group SpecialPage
diff --git a/repo/tests/phpunit/includes/specials/SpecialMergeItemsTest.php 
b/repo/tests/phpunit/includes/specials/SpecialMergeItemsTest.php
index 2eb5a75..b55b573 100644
--- a/repo/tests/phpunit/includes/specials/SpecialMergeItemsTest.php
+++ b/repo/tests/phpunit/includes/specials/SpecialMergeItemsTest.php
@@ -21,6 +21,7 @@
 
 /**
  * @covers Wikibase\Repo\Specials\SpecialMergeItems
+ * @covers Wikibase\Repo\Specials\SpecialWikibasePage
  *
  * @group Wikibase
  * @group SpecialPage
diff --git a/repo/tests/phpunit/includes/specials/SpecialNewItemTest.php 
b/repo/tests/phpunit/includes/specials/SpecialNewItemTest.php
index ca1bcb3..a738d51 100644
--- a/repo/tests/phpunit/includes/specials/SpecialNewItemTest.php
+++ b/repo/tests/phpunit/includes/specials/SpecialNewItemTest.php
@@ -6,6 +6,9 @@
 
 /**
  * @covers Wikibase\Repo\Specials\SpecialNewItem
+ * @covers Wikibase\Repo\Specials\SpecialNewEntity
+ * @covers Wikibase\Repo\Specials\SpecialWikibaseRepoPage
+ * @covers Wikibase\Repo\Specials\SpecialWikibasePage
  *
  * @group Wikibase
  * @group WikibaseRepo
diff --git a/repo/tests/phpunit/includes/specials/SpecialNewPropertyTest.php 
b/repo/tests/phpunit/includes/specials/SpecialNewPropertyTest.php
index a546490..e39a225 100644
--- a/repo/tests/phpunit/includes/specials/SpecialNewPropertyTest.php
+++ b/repo/tests/phpunit/includes/specials/SpecialNewPropertyTest.php
@@ -6,6 +6,9 @@
 
 /**
  * @covers Wikibase\Repo\Specials\SpecialNewProperty
+ * @covers Wikibase\Repo\Specials\SpecialNewEntity
+ * @covers Wikibase\Repo\Specials\SpecialWikibaseRepoPage
+ * @covers Wikibase\Repo\Specials\SpecialWikibasePage
  *
  * @group Wikibase
  * @group WikibaseRepo
diff --git a/repo/tests/phpunit/includes/specials/SpecialRedirectEntityTest.php 
b/repo/tests/phpunit/includes/specials/SpecialRedirectEntityTest.php
index 67afe69..41a543f 100644
--- a/repo/tests/phpunit/includes/specials/SpecialRedirectEntityTest.php
+++ b/repo/tests/phpunit/includes/specials/SpecialRedirectEntityTest.php
@@ -19,6 +19,7 @@
 
 /**
  * @covers Wikibase\Repo\Specials\SpecialRedirectEntity
+ * @covers Wikibase\Repo\Specials\SpecialWikibasePage
  *
  * @group Wikibase
  * @group SpecialPage
diff --git a/repo/tests/phpunit/includes/specials/SpecialSetAliasesTest.php 
b/repo/tests/phpunit/includes/specials/SpecialSetAliasesTest.php
index 53e08c3..22cd22d 100644
--- a/repo/tests/phpunit/includes/specials/SpecialSetAliasesTest.php
+++ b/repo/tests/phpunit/includes/specials/SpecialSetAliasesTest.php
@@ -6,6 +6,10 @@
 
 /**
  * @covers Wikibase\Repo\Specials\SpecialSetAliases
+ * @covers Wikibase\Repo\Specials\SpecialModifyTerm
+ * @covers Wikibase\Repo\Specials\SpecialModifyEntity
+ * @covers Wikibase\Repo\Specials\SpecialWikibaseRepoPage
+ * @covers Wikibase\Repo\Specials\SpecialWikibasePage
  *
  * @group Wikibase
  * @group WikibaseRepo
diff --git a/repo/tests/phpunit/includes/specials/SpecialSetDescriptionTest.php 
b/repo/tests/phpunit/includes/specials/SpecialSetDescriptionTest.php
index 621e336..9629bba 100644
--- a/repo/tests/phpunit/includes/specials/SpecialSetDescriptionTest.php
+++ b/repo/tests/phpunit/includes/specials/SpecialSetDescriptionTest.php
@@ -6,6 +6,10 @@
 
 /**
  * @covers Wikibase\Repo\Specials\SpecialSetDescription
+ * @covers Wikibase\Repo\Specials\SpecialModifyTerm
+ * @covers Wikibase\Repo\Specials\SpecialModifyEntity
+ * @covers Wikibase\Repo\Specials\SpecialWikibaseRepoPage
+ * @covers Wikibase\Repo\Specials\SpecialWikibasePage
  *
  * @group Wikibase
  * @group WikibaseRepo
diff --git 
a/repo/tests/phpunit/includes/specials/SpecialSetLabelDescriptionAliasesTest.php
 
b/repo/tests/phpunit/includes/specials/SpecialSetLabelDescriptionAliasesTest.php
index e37fd76..314fdc9 100644
--- 
a/repo/tests/phpunit/includes/specials/SpecialSetLabelDescriptionAliasesTest.php
+++ 
b/repo/tests/phpunit/includes/specials/SpecialSetLabelDescriptionAliasesTest.php
@@ -21,6 +21,9 @@
 
 /**
  * @covers Wikibase\Repo\Specials\SpecialSetLabelDescriptionAliases
+ * @covers Wikibase\Repo\Specials\SpecialModifyEntity
+ * @covers Wikibase\Repo\Specials\SpecialWikibaseRepoPage
+ * @covers Wikibase\Repo\Specials\SpecialWikibasePage
  *
  * @group Wikibase
  * @group WikibaseRepo
diff --git a/repo/tests/phpunit/includes/specials/SpecialSetLabelTest.php 
b/repo/tests/phpunit/includes/specials/SpecialSetLabelTest.php
index d0ba5c9..20335ca 100644
--- a/repo/tests/phpunit/includes/specials/SpecialSetLabelTest.php
+++ b/repo/tests/phpunit/includes/specials/SpecialSetLabelTest.php
@@ -6,6 +6,10 @@
 
 /**
  * @covers Wikibase\Repo\Specials\SpecialSetLabel
+ * @covers Wikibase\Repo\Specials\SpecialModifyTerm
+ * @covers Wikibase\Repo\Specials\SpecialModifyEntity
+ * @covers Wikibase\Repo\Specials\SpecialWikibaseRepoPage
+ * @covers Wikibase\Repo\Specials\SpecialWikibasePage
  *
  * @group Wikibase
  * @group WikibaseRepo
diff --git a/repo/tests/phpunit/includes/specials/SpecialSetSiteLinkTest.php 
b/repo/tests/phpunit/includes/specials/SpecialSetSiteLinkTest.php
index f9e411f..ca6292c 100644
--- a/repo/tests/phpunit/includes/specials/SpecialSetSiteLinkTest.php
+++ b/repo/tests/phpunit/includes/specials/SpecialSetSiteLinkTest.php
@@ -13,6 +13,9 @@
 
 /**
  * @covers Wikibase\Repo\Specials\SpecialSetSiteLink
+ * @covers Wikibase\Repo\Specials\SpecialModifyEntity
+ * @covers Wikibase\Repo\Specials\SpecialWikibaseRepoPage
+ * @covers Wikibase\Repo\Specials\SpecialWikibasePage
  *
  * @group Wikibase
  * @group WikibaseRepo

-- 
To view, visit https://gerrit.wikimedia.org/r/251300
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I63f0309b7b1d9812994c225b50f9f8650481f35f
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/Wikibase
Gerrit-Branch: master
Gerrit-Owner: Thiemo Mättig (WMDE) <[email protected]>

_______________________________________________
MediaWiki-commits mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to