3 include_once __DIR__ . '/WebTestCase.php';
5 class DebuggerTest extends PhpXmlRpc_WebTestCase
7 public function set_up()
9 $this->args = argParser::getArgs();
11 $this->baseUrl = $this->args['HTTPSERVER'] . str_replace( '/demo/server/server.php', '/debugger/', $this->args['HTTPURI'] );
13 $this->coverageScriptUrl = 'http://' . $this->args['HTTPSERVER'] . '/' . str_replace( '/demo/server/server.php', 'tests/phpunit_coverage.php', $this->args['HTTPURI'] );
16 public function testIndex()
18 $page = $this->request('index.php');
21 public function testController()
23 $page = $this->request('controller.php');
33 public function testAction()
35 $page = $this->request('action.php');