diff options
Diffstat (limited to 'tests/bootstrap.php')
-rw-r--r-- | tests/bootstrap.php | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/tests/bootstrap.php b/tests/bootstrap.php new file mode 100644 index 00000000000..73c6e395299 --- /dev/null +++ b/tests/bootstrap.php @@ -0,0 +1,26 @@ +<?php + +require_once __DIR__.'/../lib/base.php'; + +if(!class_exists('PHPUnit_Framework_TestCase')){ + require_once('PHPUnit/Autoload.php'); +} + +//SimpleTest compatibility +abstract class UnitTestCase extends PHPUnit_Framework_TestCase{ + function assertEqual($expected, $actual, $string=''){ + $this->assertEquals($expected, $actual, $string); + } + + function assertNotEqual($expected, $actual, $string=''){ + $this->assertNotEquals($expected, $actual, $string); + } + + static function assertTrue($actual, $string=''){ + parent::assertTrue((bool)$actual, $string); + } + + static function assertFalse($actual, $string=''){ + parent::assertFalse((bool)$actual, $string); + } +} |