ExtraFilesTest   A
last analyzed

Complexity

Total Complexity 3

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 4
c 0
b 0
f 0
dl 0
loc 15
rs 10
wmc 3

3 Methods

Rating   Name   Duplication   Size   Complexity  
A testVerifyCompat() 0 3 1
A testBenchmark() 0 3 1
A testVarDemo() 0 3 1
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
The assignment to $page is dead and can be removed.
Loading history...
13
    }
14
15
    public function testVerifyCompat()
16
    {
17
        $page = $this->request('?extras=verify_compat.php');
0 ignored issues
show
Unused Code introduced by
The assignment to $page is dead and can be removed.
Loading history...
18
    }
19
20
    public function testVarDemo()
21
    {
22
        $page = $this->request('?demo=vardemo.php');
0 ignored issues
show
Unused Code introduced by
The assignment to $page is dead and can be removed.
Loading history...
23
    }
24
}
25