Added default class

This commit is contained in:
Shoghi Cervantes 2013-08-28 16:41:57 +02:00
parent f5e640c875
commit 29d089db5b

View File

@ -1,6 +1,8 @@
<?php
if(class_exists("PHPUnit_Framework_TestCase", false)){
if(!class_exists("PHPUnit_Framework_TestCase", false)){
class PHPUnit_Framework_TestCase{} //Normal include
}
class ServerSuiteTest extends PHPUnit_Framework_TestCase{
private $server;
@ -34,6 +36,4 @@ if(class_exists("PHPUnit_Framework_TestCase", false)){
$this->server->init();
exit(0);
}
}
}
}