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