summaryrefslogtreecommitdiff
path: root/tests/Framework/DB.php
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2014-02-09 17:37:16 +0100
committerAleksander Machniak <alec@alec.pl>2014-02-09 17:39:27 +0100
commitd3abad28764286cb8a58e5c74173d3fd671c5ac0 (patch)
tree691a03476c6787ec80a7c2582f5f196664a9da24 /tests/Framework/DB.php
parent517c9f9a8dba8e83eaa37a7660f434102e967a77 (diff)
Add more tests for framework classes
Diffstat (limited to 'tests/Framework/DB.php')
-rw-r--r--tests/Framework/DB.php20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/Framework/DB.php b/tests/Framework/DB.php
new file mode 100644
index 000000000..b7a063841
--- /dev/null
+++ b/tests/Framework/DB.php
@@ -0,0 +1,20 @@
+<?php
+
+/**
+ * Test class to test rcube_db class
+ *
+ * @package Tests
+ */
+class Framework_DB extends PHPUnit_Framework_TestCase
+{
+
+ /**
+ * Class constructor
+ */
+ function test_class()
+ {
+ $object = new rcube_db('test');
+
+ $this->assertInstanceOf('rcube_db', $object, "Class constructor");
+ }
+}