Add unit test for LdapBackendGroupProvider

This commit is contained in:
Frederic Guillot
2015-12-22 19:16:26 +01:00
parent 6f9af3659c
commit a16f3adc1e

View File

@@ -0,0 +1,16 @@
<?php
require_once __DIR__.'/../Base.php';
use Kanboard\Group\LdapBackendGroupProvider;
class LdapBackendGroupProviderTest extends Base
{
public function testGetLdapGroupPattern()
{
$this->setExpectedException('LogicException', 'LDAP group filter empty, check the parameter LDAP_GROUP_FILTER');
$backend = new LdapBackendGroupProvider($this->container);
$backend->getLdapGroupPattern('test');
}
}