2012-10-03 23:06:01 +04:00
|
|
|
<?php
|
|
|
|
|
2012-11-09 20:49:06 +04:00
|
|
|
global $RUNTIME_NOAPPS;
|
|
|
|
$RUNTIME_NOAPPS = true;
|
2012-10-03 23:06:01 +04:00
|
|
|
require_once __DIR__.'/../lib/base.php';
|
|
|
|
|
2012-11-04 13:46:32 +04:00
|
|
|
if(!class_exists('PHPUnit_Framework_TestCase')) {
|
2012-10-03 23:06:01 +04:00
|
|
|
require_once('PHPUnit/Autoload.php');
|
|
|
|
}
|
|
|
|
|
|
|
|
//SimpleTest compatibility
|
|
|
|
abstract class UnitTestCase extends PHPUnit_Framework_TestCase{
|
2012-11-04 13:46:32 +04:00
|
|
|
function assertEqual($expected, $actual, $string='') {
|
2012-10-03 23:06:01 +04:00
|
|
|
$this->assertEquals($expected, $actual, $string);
|
|
|
|
}
|
|
|
|
|
2012-11-04 13:46:32 +04:00
|
|
|
function assertNotEqual($expected, $actual, $string='') {
|
2012-10-03 23:06:01 +04:00
|
|
|
$this->assertNotEquals($expected, $actual, $string);
|
|
|
|
}
|
|
|
|
|
2012-11-04 13:46:32 +04:00
|
|
|
static function assertTrue($actual, $string='') {
|
2012-10-03 23:06:01 +04:00
|
|
|
parent::assertTrue((bool)$actual, $string);
|
|
|
|
}
|
|
|
|
|
2012-11-04 13:46:32 +04:00
|
|
|
static function assertFalse($actual, $string='') {
|
2012-10-03 23:06:01 +04:00
|
|
|
parent::assertFalse((bool)$actual, $string);
|
|
|
|
}
|
|
|
|
}
|
2012-10-12 17:44:48 +04:00
|
|
|
|
|
|
|
OC_Hook::clear();
|
2012-10-12 17:45:05 +04:00
|
|
|
OC_Log::$enabled = false;
|