Add unit test for LdapBackendGroupProvider
This commit is contained in:
parent
6f9af3659c
commit
a16f3adc1e
|
|
@ -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');
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue