Add 'php/phpxmlrpc/' from commit 'cd5dbb4a511e7a616a61187a5de1a611a9748cbd'
[plcapi.git] / php / phpxmlrpc / tests / 7ExtraTest.php
1 <?php
2
3 include_once __DIR__ . '/LocalFileTestCase.php';
4
5 /**
6  * Tests for php files in the 'extras' directory
7  */
8 class ExtraTest extends PhpXmlRpc_LocalFileTestCase
9 {
10     public function setUp()
11     {
12         $this->args = argParser::getArgs();
13
14         $this->baseUrl = $this->args['LOCALSERVER'] . str_replace( '/demo/server/server.php', '/tests/', $this->args['URI'] );
15
16         $this->coverageScriptUrl = 'http://' . $this->args['LOCALSERVER'] . '/' . str_replace( '/demo/server/server.php', 'tests/phpunit_coverage.php', $this->args['URI'] );
17     }
18
19     public function testVerifyCompat()
20     {
21         $page = $this->request('verify_compat.php');
22     }
23 }