From e1817d72ba4c2b08fee51ca3dade1d5dafc16122 Mon Sep 17 00:00:00 2001 From: Kunal Mehta Date: Sun, 24 Dec 2017 23:27:22 -0800 Subject: [PATCH 1/1] Add @covers tags to utils tests Change-Id: Iee44762696120c63fec986de1da76f12849f5957 --- tests/phpunit/includes/utils/BatchRowUpdateTest.php | 4 ++++ tests/phpunit/includes/utils/MWCryptHKDFTest.php | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/tests/phpunit/includes/utils/BatchRowUpdateTest.php b/tests/phpunit/includes/utils/BatchRowUpdateTest.php index 017e97d357..d80a61c4fb 100644 --- a/tests/phpunit/includes/utils/BatchRowUpdateTest.php +++ b/tests/phpunit/includes/utils/BatchRowUpdateTest.php @@ -4,6 +4,10 @@ * Tests for BatchRowUpdate and its components * * @group db + * + * @covers BatchRowUpdate + * @covers BatchRowIterator + * @covers BatchRowWriter */ class BatchRowUpdateTest extends MediaWikiTestCase { diff --git a/tests/phpunit/includes/utils/MWCryptHKDFTest.php b/tests/phpunit/includes/utils/MWCryptHKDFTest.php index 86c19ae451..ac638c6a40 100644 --- a/tests/phpunit/includes/utils/MWCryptHKDFTest.php +++ b/tests/phpunit/includes/utils/MWCryptHKDFTest.php @@ -4,6 +4,10 @@ * @group HKDF */ +/** + * @covers CryptHKDF + * @covers MWCryptHKDF + */ class MWCryptHKDFTest extends MediaWikiTestCase { protected function setUp() { -- 2.20.1