Skip to content
Snippets Groups Projects
Commit a7175a13 authored by Jaime Pérez's avatar Jaime Pérez
Browse files

Minor phpdoc fixes.

parent b9eecee8
No related branches found
No related tags found
No related merge requests found
...@@ -2,7 +2,6 @@ ...@@ -2,7 +2,6 @@
namespace SimpleSAML\Test\Utils; namespace SimpleSAML\Test\Utils;
/** /**
* Tests for SimpleSAML\Utils\Crypto. * Tests for SimpleSAML\Utils\Crypto.
*/ */
...@@ -14,7 +13,7 @@ class CryptoTest extends \PHPUnit_Framework_TestCase ...@@ -14,7 +13,7 @@ class CryptoTest extends \PHPUnit_Framework_TestCase
* *
* @expectedException \InvalidArgumentException * @expectedException \InvalidArgumentException
* *
* @covers SimpleSAML\Utils\Crypto::_aesDecrypt * @covers \SimpleSAML\Utils\Crypto::_aesDecrypt
*/ */
public function testAesDecryptBadInput() public function testAesDecryptBadInput()
{ {
...@@ -30,7 +29,7 @@ class CryptoTest extends \PHPUnit_Framework_TestCase ...@@ -30,7 +29,7 @@ class CryptoTest extends \PHPUnit_Framework_TestCase
* *
* @expectedException \InvalidArgumentException * @expectedException \InvalidArgumentException
* *
* @covers SimpleSAML\Utils\Crypto::_aesEncrypt * @covers \SimpleSAML\Utils\Crypto::_aesEncrypt
*/ */
public function testAesEncryptBadInput() public function testAesEncryptBadInput()
{ {
...@@ -45,7 +44,7 @@ class CryptoTest extends \PHPUnit_Framework_TestCase ...@@ -45,7 +44,7 @@ class CryptoTest extends \PHPUnit_Framework_TestCase
* Test that aesDecrypt() works properly, being able to decrypt some previously known (and correct) * Test that aesDecrypt() works properly, being able to decrypt some previously known (and correct)
* ciphertext. * ciphertext.
* *
* @covers SimpleSAML\Utils\Crypto::_aesDecrypt * @covers \SimpleSAML\Utils\Crypto::_aesDecrypt
*/ */
public function testAesDecrypt() public function testAesDecrypt()
{ {
...@@ -66,8 +65,8 @@ class CryptoTest extends \PHPUnit_Framework_TestCase ...@@ -66,8 +65,8 @@ class CryptoTest extends \PHPUnit_Framework_TestCase
/** /**
* Test that aesEncrypt() produces ciphertexts that aesDecrypt() can decrypt. * Test that aesEncrypt() produces ciphertexts that aesDecrypt() can decrypt.
* *
* @covers SimpleSAML\Utils\Crypto::_aesDecrypt * @covers \SimpleSAML\Utils\Crypto::_aesDecrypt
* @covers SimpleSAML\Utils\Crypto::_aesEncrypt * @covers \SimpleSAML\Utils\Crypto::_aesEncrypt
*/ */
public function testAesEncrypt() public function testAesEncrypt()
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment