Fixed test @covers annotations

This commit is contained in:
2023-04-10 00:04:43 +02:00
parent e30ded1e66
commit 5c422226fd
5 changed files with 42 additions and 11 deletions

View File

@ -8,7 +8,10 @@ class JWTTokenTest extends \PHPUnit\Framework\TestCase
{
/**
* @covers
* @covers NoccyLabs\SimpleJWT\JWTToken
* @covers NoccyLabs\SimpleJWT\Key\JWTPlaintextKey
* @covers NoccyLabs\SimpleJWT\Collection\PropertyBag
* @covers NoccyLabs\SimpleJWT\JWTUtil
*/
public function testGeneratingTokens()
{
@ -24,7 +27,10 @@ class JWTTokenTest extends \PHPUnit\Framework\TestCase
}
/**
* @covers
* @covers NoccyLabs\SimpleJWT\JWTToken
* @covers NoccyLabs\SimpleJWT\Key\JWTPlaintextKey
* @covers NoccyLabs\SimpleJWT\Collection\PropertyBag
* @covers NoccyLabs\SimpleJWT\JWTUtil
*/
public function testParsingTokens()
{