diff options
author | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-01-24 16:47:17 +0100 |
---|---|---|
committer | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-01-24 16:47:17 +0100 |
commit | ef88ceba8c1108aad6a4f437206f205c60fda870 (patch) | |
tree | 707b73619edbb7b6a734358054e4d878f0fe2137 /tests/bootstrap.php | |
parent | 1dac2ba496a0054e9d5383a6babe7401dd2a260c (diff) | |
download | nextcloud-server-ef88ceba8c1108aad6a4f437206f205c60fda870.tar.gz nextcloud-server-ef88ceba8c1108aad6a4f437206f205c60fda870.zip |
drop SimpleTest compatibility
Diffstat (limited to 'tests/bootstrap.php')
-rw-r--r-- | tests/bootstrap.php | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/bootstrap.php b/tests/bootstrap.php index 115a15883a0..b97161ee6e4 100644 --- a/tests/bootstrap.php +++ b/tests/bootstrap.php @@ -8,24 +8,5 @@ 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); - } -} - OC_Hook::clear(); OC_Log::$enabled = false; |