Файл: symfony-2.7/src/Symfony/Component/Security/Core/Tests/Exception/UsernameNotFoundExceptionTest.php
Строк: 46
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace SymfonyComponentSecurityCoreTestsException;
use SymfonyComponentSecurityCoreExceptionUsernameNotFoundException;
class UsernameNotFoundExceptionTest extends PHPUnit_Framework_TestCase
{
public function testGetMessageData()
{
$exception = new UsernameNotFoundException('Username could not be found.');
$this->assertEquals(array('{{ username }}' => null), $exception->getMessageData());
$exception->setUsername('username');
$this->assertEquals(array('{{ username }}' => 'username'), $exception->getMessageData());
}
}