aboutsummaryrefslogtreecommitdiff
path: root/vendors/simpletest/test/support/test1.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendors/simpletest/test/support/test1.php')
-rw-r--r--vendors/simpletest/test/support/test1.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/vendors/simpletest/test/support/test1.php b/vendors/simpletest/test/support/test1.php
new file mode 100644
index 000000000..b414586d6
--- /dev/null
+++ b/vendors/simpletest/test/support/test1.php
@@ -0,0 +1,7 @@
+<?php
+class test1 extends UnitTestCase {
+ function test_pass(){
+ $this->assertEqual(3,1+2, "pass1");
+ }
+}
+?>