summaryrefslogtreecommitdiff
path: root/tests/Framework/LdapGeneric.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Framework/LdapGeneric.php')
-rw-r--r--tests/Framework/LdapGeneric.php20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/Framework/LdapGeneric.php b/tests/Framework/LdapGeneric.php
new file mode 100644
index 000000000..8cb1a2ce5
--- /dev/null
+++ b/tests/Framework/LdapGeneric.php
@@ -0,0 +1,20 @@
+<?php
+
+/**
+ * Test class to test rcube_ldap_generic class
+ *
+ * @package Tests
+ */
+class Framework_LdapGeneric extends PHPUnit_Framework_TestCase
+{
+
+ /**
+ * Class constructor
+ */
+ function test_class()
+ {
+ $object = new rcube_ldap_generic(array());
+
+ $this->assertInstanceOf('rcube_ldap_generic', $object, "Class constructor");
+ }
+}