From a7175a13c4fa494c2358418d2bcf32940c35465e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaime=20Pe=CC=81rez?= <jaime.perez@uninett.no> Date: Tue, 10 Jan 2017 10:53:29 +0100 Subject: [PATCH] Minor phpdoc fixes. --- tests/lib/SimpleSAML/Utils/CryptoTest.php | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/tests/lib/SimpleSAML/Utils/CryptoTest.php b/tests/lib/SimpleSAML/Utils/CryptoTest.php index e8f0bfadc..bb5f9b35b 100644 --- a/tests/lib/SimpleSAML/Utils/CryptoTest.php +++ b/tests/lib/SimpleSAML/Utils/CryptoTest.php @@ -2,7 +2,6 @@ namespace SimpleSAML\Test\Utils; - /** * Tests for SimpleSAML\Utils\Crypto. */ @@ -14,7 +13,7 @@ class CryptoTest extends \PHPUnit_Framework_TestCase * * @expectedException \InvalidArgumentException * - * @covers SimpleSAML\Utils\Crypto::_aesDecrypt + * @covers \SimpleSAML\Utils\Crypto::_aesDecrypt */ public function testAesDecryptBadInput() { @@ -30,7 +29,7 @@ class CryptoTest extends \PHPUnit_Framework_TestCase * * @expectedException \InvalidArgumentException * - * @covers SimpleSAML\Utils\Crypto::_aesEncrypt + * @covers \SimpleSAML\Utils\Crypto::_aesEncrypt */ public function testAesEncryptBadInput() { @@ -45,7 +44,7 @@ class CryptoTest extends \PHPUnit_Framework_TestCase * Test that aesDecrypt() works properly, being able to decrypt some previously known (and correct) * ciphertext. * - * @covers SimpleSAML\Utils\Crypto::_aesDecrypt + * @covers \SimpleSAML\Utils\Crypto::_aesDecrypt */ public function testAesDecrypt() { @@ -66,8 +65,8 @@ class CryptoTest extends \PHPUnit_Framework_TestCase /** * Test that aesEncrypt() produces ciphertexts that aesDecrypt() can decrypt. * - * @covers SimpleSAML\Utils\Crypto::_aesDecrypt - * @covers SimpleSAML\Utils\Crypto::_aesEncrypt + * @covers \SimpleSAML\Utils\Crypto::_aesDecrypt + * @covers \SimpleSAML\Utils\Crypto::_aesEncrypt */ public function testAesEncrypt() { -- GitLab