mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-03 14:54:01 +01:00
24 lines
465 B
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");
|
|
}
|
|
}
|