diff options
Diffstat (limited to '3rdparty/simpletest/test/support/passing_test.php')
-rwxr-xr-x | 3rdparty/simpletest/test/support/passing_test.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/3rdparty/simpletest/test/support/passing_test.php b/3rdparty/simpletest/test/support/passing_test.php new file mode 100755 index 00000000000..b7863216353 --- /dev/null +++ b/3rdparty/simpletest/test/support/passing_test.php @@ -0,0 +1,9 @@ +<?php +require_once(dirname(__FILE__) . '/../../autorun.php'); + +class PassingTest extends UnitTestCase { + function test_pass() { + $this->assertEqual(2,2); + } +} +?>
\ No newline at end of file |