summaryrefslogtreecommitdiffstats
path: root/Core/Tests
diff options
context:
space:
mode:
authorRyan Weaver <ryan@thatsquality.com>2015-09-23 22:14:56 -0400
committerRyan Weaver <ryan@thatsquality.com>2015-09-27 16:39:53 -0400
commit1a66cae1aaed170da367d81c9fdc1f83cf6c3018 (patch)
tree1eebdfd1a70ec0e840e5dfd925b352e1d0d8bf34 /Core/Tests
parentae2c4c820d9aca6ad7eac272e9c18f72c15dc04a (diff)
downloadsymfony-security-1a66cae1aaed170da367d81c9fdc1f83cf6c3018.zip
symfony-security-1a66cae1aaed170da367d81c9fdc1f83cf6c3018.tar.gz
symfony-security-1a66cae1aaed170da367d81c9fdc1f83cf6c3018.tar.bz2
Adding a class to make it easier to set custom authentication error messages
Diffstat (limited to 'Core/Tests')
-rw-r--r--Core/Tests/Exception/CustomUserMessageAuthenticationExceptionTest.php26
1 files changed, 26 insertions, 0 deletions
diff --git a/Core/Tests/Exception/CustomUserMessageAuthenticationExceptionTest.php b/Core/Tests/Exception/CustomUserMessageAuthenticationExceptionTest.php
new file mode 100644
index 0000000..408dd2a
--- /dev/null
+++ b/Core/Tests/Exception/CustomUserMessageAuthenticationExceptionTest.php
@@ -0,0 +1,26 @@
+<?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\Core\Tests\Exception;
+
+use Symfony\Component\Security\Core\Exception\CustomUserMessageAuthenticationException;
+
+class CustomUserMessageAuthenticationExceptionTest extends \PHPUnit_Framework_TestCase
+{
+ public function testConstructWithSAfeMessage()
+ {
+ $e = new CustomUserMessageAuthenticationException('SAFE MESSAGE', array('foo' => true));
+
+ $this->assertEquals('SAFE MESSAGE', $e->getMessageKey());
+ $this->assertEquals(array('foo' => true), $e->getMessageData());
+ $this->assertEquals('SAFE MESSAGE', $e->getMessage());
+ }
+}