summaryrefslogtreecommitdiffstats
path: root/Tests/Core/Authentication/Provider/UserAuthenticationProviderTest.php
diff options
context:
space:
mode:
authorFabien Potencier <fabien.potencier@gmail.com>2013-01-05 19:24:35 +0100
committerFabien Potencier <fabien.potencier@gmail.com>2013-01-05 19:24:35 +0100
commitb11eb9120cde5e05fccc39fdeef7fadf0fb4fa4d (patch)
treed98fe5b4737c868b532b5a528b9ca25d3a59c760 /Tests/Core/Authentication/Provider/UserAuthenticationProviderTest.php
parent48018e4abb848ff1a2ecb781ca3303979e3a2357 (diff)
parent39b2670c52d0d53224cb671418e2a852b864f786 (diff)
downloadsymfony-security-b11eb9120cde5e05fccc39fdeef7fadf0fb4fa4d.zip
symfony-security-b11eb9120cde5e05fccc39fdeef7fadf0fb4fa4d.tar.gz
symfony-security-b11eb9120cde5e05fccc39fdeef7fadf0fb4fa4d.tar.bz2
merged branch bschussek/exceptionfix (PR #6582)
This PR was merged into the master branch. Commits ------- 184c8e5 Fixed @expectedException definitions to reference absolute exception paths Discussion ---------- Added leading slashes to @expectedException definitions Bug fix: no Feature addition: no Backwards compatibility break: no Symfony2 tests pass: yes Fixes the following tickets: - Todo: - License of the code: MIT Documentation PR: - This PR adds leading backslashes `\` to `@expectedException` declarations. The current version is inconsistent with other class references in doc blocks, which default to *relative* class names unless class name has a leading backslash. ```php /** * @param RelativeNs\Class $param1 * @param \AbsoluteNs\Class $param2 */ but /** * @expectedException AbsoluteNs\Class */ ``` Consequently, PHPStorm does not understand the current statements and marks them as erroneous (and correctly so IMO, even though PHPUnit's interpretation is more relaxed).
Diffstat (limited to 'Tests/Core/Authentication/Provider/UserAuthenticationProviderTest.php')
-rw-r--r--Tests/Core/Authentication/Provider/UserAuthenticationProviderTest.php14
1 files changed, 7 insertions, 7 deletions
diff --git a/Tests/Core/Authentication/Provider/UserAuthenticationProviderTest.php b/Tests/Core/Authentication/Provider/UserAuthenticationProviderTest.php
index 1b68531..1516a5f 100644
--- a/Tests/Core/Authentication/Provider/UserAuthenticationProviderTest.php
+++ b/Tests/Core/Authentication/Provider/UserAuthenticationProviderTest.php
@@ -33,7 +33,7 @@ class UserAuthenticationProviderTest extends \PHPUnit_Framework_TestCase
}
/**
- * @expectedException Symfony\Component\Security\Core\Exception\UsernameNotFoundException
+ * @expectedException \Symfony\Component\Security\Core\Exception\UsernameNotFoundException
*/
public function testAuthenticateWhenUsernameIsNotFound()
{
@@ -47,7 +47,7 @@ class UserAuthenticationProviderTest extends \PHPUnit_Framework_TestCase
}
/**
- * @expectedException Symfony\Component\Security\Core\Exception\BadCredentialsException
+ * @expectedException \Symfony\Component\Security\Core\Exception\BadCredentialsException
*/
public function testAuthenticateWhenUsernameIsNotFoundAndHideIsTrue()
{
@@ -61,7 +61,7 @@ class UserAuthenticationProviderTest extends \PHPUnit_Framework_TestCase
}
/**
- * @expectedException Symfony\Component\Security\Core\Exception\AuthenticationServiceException
+ * @expectedException \Symfony\Component\Security\Core\Exception\AuthenticationServiceException
*/
public function testAuthenticateWhenProviderDoesNotReturnAnUserInterface()
{
@@ -75,7 +75,7 @@ class UserAuthenticationProviderTest extends \PHPUnit_Framework_TestCase
}
/**
- * @expectedException Symfony\Component\Security\Core\Exception\CredentialsExpiredException
+ * @expectedException \Symfony\Component\Security\Core\Exception\CredentialsExpiredException
*/
public function testAuthenticateWhenPreChecksFails()
{
@@ -95,7 +95,7 @@ class UserAuthenticationProviderTest extends \PHPUnit_Framework_TestCase
}
/**
- * @expectedException Symfony\Component\Security\Core\Exception\AccountExpiredException
+ * @expectedException \Symfony\Component\Security\Core\Exception\AccountExpiredException
*/
public function testAuthenticateWhenPostChecksFails()
{
@@ -115,7 +115,7 @@ class UserAuthenticationProviderTest extends \PHPUnit_Framework_TestCase
}
/**
- * @expectedException Symfony\Component\Security\Core\Exception\BadCredentialsException
+ * @expectedException \Symfony\Component\Security\Core\Exception\BadCredentialsException
* @expectedExceptionMessage Bad credentials
*/
public function testAuthenticateWhenPostCheckAuthenticationFails()
@@ -134,7 +134,7 @@ class UserAuthenticationProviderTest extends \PHPUnit_Framework_TestCase
}
/**
- * @expectedException Symfony\Component\Security\Core\Exception\BadCredentialsException
+ * @expectedException \Symfony\Component\Security\Core\Exception\BadCredentialsException
* @expectedExceptionMessage Foo
*/
public function testAuthenticateWhenPostCheckAuthenticationFailsWithHideFalse()