Fix DbBackendFormTest and LdapBackendFormTest

refs #8826
This commit is contained in:
Johannes Meyer 2015-04-22 10:36:37 +02:00
parent 7960e911a6
commit adae7b34c1
2 changed files with 4 additions and 4 deletions

View File

@ -27,7 +27,7 @@ class DbBackendFormTest extends BaseTestCase
public function testValidBackendIsValid()
{
$this->setUpResourceFactoryMock();
Mockery::mock('overload:Icinga\Authentication\Backend\DbUserBackend')
Mockery::mock('overload:Icinga\Authentication\User\DbUserBackend')
->shouldReceive('count')
->andReturn(2);
@ -52,7 +52,7 @@ class DbBackendFormTest extends BaseTestCase
public function testInvalidBackendIsNotValid()
{
$this->setUpResourceFactoryMock();
Mockery::mock('overload:Icinga\Authentication\Backend\DbUserBackend')
Mockery::mock('overload:Icinga\Authentication\User\DbUserBackend')
->shouldReceive('count')
->andReturn(0);

View File

@ -28,7 +28,7 @@ class LdapBackendFormTest extends BaseTestCase
public function testValidBackendIsValid()
{
$this->setUpResourceFactoryMock();
Mockery::mock('overload:Icinga\Authentication\Backend\LdapUserBackend')
Mockery::mock('overload:Icinga\Authentication\User\LdapUserBackend')
->shouldReceive('assertAuthenticationPossible')->andReturnNull();
$form = Mockery::mock('Icinga\Forms\Config\Authentication\LdapBackendForm[getView]');
@ -52,7 +52,7 @@ class LdapBackendFormTest extends BaseTestCase
public function testInvalidBackendIsNotValid()
{
$this->setUpResourceFactoryMock();
Mockery::mock('overload:Icinga\Authentication\Backend\LdapUserBackend')
Mockery::mock('overload:Icinga\Authentication\User\LdapUserBackend')
->shouldReceive('assertAuthenticationPossible')->andThrow(new AuthenticationException);
$form = Mockery::mock('Icinga\Forms\Config\Authentication\LdapBackendForm[getView]');