You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
roundcubemail/tests/Framework/Ldap.php

24 lines
465 B
PHP

<?php
/**
* Test class to test rcube_ldap class
*
* @package Tests
*/
class Framework_Ldap extends PHPUnit\Framework\TestCase
{
/**
* Class constructor
*/
function test_class()
{
// skip this test as we don't want to connect to ldap here
$this->markTestSkipped('We do not connect to LDAP');
$object = new rcube_ldap(array());
$this->assertInstanceOf('rcube_ldap', $object, "Class constructor");
}
}