commit | author | age
|
d3abad
|
1 |
<?php |
AM |
2 |
|
|
3 |
/** |
|
4 |
* Test class to test rcube_ldap_generic class |
|
5 |
* |
|
6 |
* @package Tests |
|
7 |
*/ |
|
8 |
class Framework_LdapGeneric extends PHPUnit_Framework_TestCase |
|
9 |
{ |
|
10 |
|
|
11 |
/** |
|
12 |
* Class constructor |
|
13 |
*/ |
|
14 |
function test_class() |
|
15 |
{ |
2d7320
|
16 |
// skip test if Net_LDAP3 does not exist |
a0f38f
|
17 |
if (!@class_exists('Net_LDAP3')) { |
2d7320
|
18 |
$this->markTestSkipped('The Net_LDAP3 package not available.'); |
AM |
19 |
} |
|
20 |
|
d3abad
|
21 |
$object = new rcube_ldap_generic(array()); |
AM |
22 |
|
|
23 |
$this->assertInstanceOf('rcube_ldap_generic', $object, "Class constructor"); |
|
24 |
} |
|
25 |
} |