ExtraFilesTest::testVarDemo()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 3
rs 10
c 0
b 0
f 0
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