1 | <?php |
||
2 | |||
3 | include_once __DIR__ . '/WebTestCase.php'; |
||
4 | |||
5 | /** |
||
6 | * Tests for php files in the 'extras' directory. |
||
7 | */ |
||
8 | class ExtraFilesTest extends PhpXmlRpc_WebTestCase |
||
9 | { |
||
10 | public function testBenchmark() |
||
11 | { |
||
12 | $page = $this->request('?extras=benchmark.php'); |
||
0 ignored issues
–
show
Unused Code
introduced
by
![]() |
|||
13 | } |
||
14 | |||
15 | public function testVerifyCompat() |
||
16 | { |
||
17 | $page = $this->request('?extras=verify_compat.php'); |
||
0 ignored issues
–
show
|
|||
18 | } |
||
19 | |||
20 | public function testVarDemo() |
||
21 | { |
||
22 | $page = $this->request('?demo=vardemo.php'); |
||
0 ignored issues
–
show
|
|||
23 | } |
||
24 | } |
||
25 |