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