blob: 73c6e395299083fd25a340ef273e2f6ce4e8ee80 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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);
}
}
|