summaryrefslogtreecommitdiff
path: root/tests/Framework/StringReplacer.php
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2012-08-27 09:28:16 +0200
committerAleksander Machniak <alec@alec.pl>2012-08-27 09:28:16 +0200
commit5f8adabb6286fdcb0ff8a0ea5d1d58f40eef51f4 (patch)
tree8e6997e584950115850bf698943f1828fb9b9811 /tests/Framework/StringReplacer.php
parent9b05f19338e209f05386e5b13fe0a704c94062bb (diff)
Add simple (constructor) tests for Framework classes
Diffstat (limited to 'tests/Framework/StringReplacer.php')
-rw-r--r--tests/Framework/StringReplacer.php20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/Framework/StringReplacer.php b/tests/Framework/StringReplacer.php
new file mode 100644
index 000000000..11210c0da
--- /dev/null
+++ b/tests/Framework/StringReplacer.php
@@ -0,0 +1,20 @@
+<?php
+
+/**
+ * Test class to test rcube_string_replacer class
+ *
+ * @package Tests
+ */
+class Framework_StringReplacer extends PHPUnit_Framework_TestCase
+{
+
+ /**
+ * Class constructor
+ */
+ function test_class()
+ {
+ $sr = new rcube_string_replacer;
+
+ $this->assertInstanceOf('rcube_string_replacer', $sr, "Class constructor");
+ }
+}