commit | author | age | ||
1b39d9 | 1 | <?php |
AM | 2 | |
3 | /** | |
4 | * Test class to test rcube_ldap class | |
5 | * | |
6 | * @package Tests | |
7 | */ | |
8 | class Framework_Ldap extends PHPUnit_Framework_TestCase | |
9 | { | |
10 | ||
11 | /** | |
12 | * Class constructor | |
13 | */ | |
14 | function test_class() | |
15 | { | |
16 | // skip this test as we don't want to connect to ldap here | |
17 | $this->markTestSkipped('We do not connect to LDAP'); | |
18 | ||
19 | $object = new rcube_ldap(array()); | |
20 | ||
21 | $this->assertInstanceOf('rcube_ldap', $object, "Class constructor"); | |
22 | } | |
23 | } |