summaryrefslogtreecommitdiffstats
path: root/Core/Tests/Exception/UsernameNotFoundExceptionTest.php
diff options
context:
space:
mode:
authorMarek Štípek <mario.dweller@seznam.cz>2014-03-12 11:37:08 +0100
committerFabien Potencier <fabien.potencier@gmail.com>2014-06-06 05:53:30 +0200
commita003576e94bc0664d259997672e0ee7dd5888b9e (patch)
treee84405bcd6031601ecf2ed067441ebbb9fbf917d /Core/Tests/Exception/UsernameNotFoundExceptionTest.php
parentef0a43829bba00b8e030331ed1ec414ff49fcbc9 (diff)
downloadsymfony-security-a003576e94bc0664d259997672e0ee7dd5888b9e.zip
symfony-security-a003576e94bc0664d259997672e0ee7dd5888b9e.tar.gz
symfony-security-a003576e94bc0664d259997672e0ee7dd5888b9e.tar.bz2
Username in UsernameNotFoundException message data
Diffstat (limited to 'Core/Tests/Exception/UsernameNotFoundExceptionTest.php')
-rw-r--r--Core/Tests/Exception/UsernameNotFoundExceptionTest.php25
1 files changed, 25 insertions, 0 deletions
diff --git a/Core/Tests/Exception/UsernameNotFoundExceptionTest.php b/Core/Tests/Exception/UsernameNotFoundExceptionTest.php
new file mode 100644
index 0000000..b460229
--- /dev/null
+++ b/Core/Tests/Exception/UsernameNotFoundExceptionTest.php
@@ -0,0 +1,25 @@
+<?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 Symfony\Component\Security\Tests\Core\Exception;
+
+use Symfony\Component\Security\Core\Exception\UsernameNotFoundException;
+
+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());
+ }
+}