Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions tests/Symfony/Tests/Component/Security/Core/Authentication/Token/AbstractTokenTest.php
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ public function testEraseCredentials()
}

/**
* @covers Symfony\Component\Security\Core\Authentication\Token\Token::serialize
* @covers Symfony\Component\Security\Core\Authentication\Token\Token::unserialize
* @covers Symfony\Component\Security\Core\Authentication\Token\AbstractToken::serialize
* @covers Symfony\Component\Security\Core\Authentication\Token\AbstractToken::unserialize
*/
public function testSerialize()
{
Expand All @@ -72,7 +72,7 @@ public function testSerialize()
}

/**
* @covers Symfony\Component\Security\Core\Authentication\Token\Token::__construct
* @covers Symfony\Component\Security\Core\Authentication\Token\AbstractToken::__construct
*/
public function testConstructor()
{
Expand All @@ -87,8 +87,8 @@ public function testConstructor()
}

/**
* @covers Symfony\Component\Security\Core\Authentication\Token\Token::isAuthenticated
* @covers Symfony\Component\Security\Core\Authentication\Token\Token::setAuthenticated
* @covers Symfony\Component\Security\Core\Authentication\Token\AbstractToken::isAuthenticated
* @covers Symfony\Component\Security\Core\Authentication\Token\AbstractToken::setAuthenticated
*/
public function testAuthenticatedFlag()
{
Expand All @@ -103,11 +103,11 @@ public function testAuthenticatedFlag()
}

/**
* @covers Symfony\Component\Security\Core\Authentication\Token\Token::getAttributes
* @covers Symfony\Component\Security\Core\Authentication\Token\Token::setAttributes
* @covers Symfony\Component\Security\Core\Authentication\Token\Token::hasAttribute
* @covers Symfony\Component\Security\Core\Authentication\Token\Token::getAttribute
* @covers Symfony\Component\Security\Core\Authentication\Token\Token::setAttribute
* @covers Symfony\Component\Security\Core\Authentication\Token\AbstractToken::getAttributes
* @covers Symfony\Component\Security\Core\Authentication\Token\AbstractToken::setAttributes
* @covers Symfony\Component\Security\Core\Authentication\Token\AbstractToken::hasAttribute
* @covers Symfony\Component\Security\Core\Authentication\Token\AbstractToken::getAttribute
* @covers Symfony\Component\Security\Core\Authentication\Token\AbstractToken::setAttribute
*/
public function testAttributes()
{
Expand Down