Remove original authenticationFormTest

refs #4606
This commit is contained in:
Jannis Moßhammer 2013-08-27 15:47:38 +02:00
parent d0ac97f335
commit 51d9f8eaa7
1 changed files with 5 additions and 1 deletions

View File

@ -50,6 +50,10 @@ class BackendMock implements UserBackend
);
}
public function getUserCount() {
return count($this->allowedCredentials);
}
public function authenticate(Credentials $credentials)
{
if (!in_array($credentials, $this->allowedCredentials)) {