DebuggerTest::testAction()   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
c 0
b 0
f 0
nc 1
nop 0
dl 0
loc 3
rs 10
1
<?php
2
3
include_once __DIR__ . '/WebTestCase.php';
4
5
/**
6
 * Tests for the bundled debugger.
7
 */
8
class DebuggerTest extends PhpXmlRpc_WebTestCase
9
{
10
    public function testIndex()
11
    {
12
        $page = $this->request('?debugger=index.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 testController()
16
    {
17
        $page = $this->request('?debugger=controller.php');
0 ignored issues
show
Unused Code introduced by
The assignment to $page is dead and can be removed.
Loading history...
18
    }
19
20
    /**
21
     * @todo test:
22
     * - list methods
23
     * - describe a method
24
     * - execute a method
25
     * - wrap a method
26
     */
27
    public function testAction()
28
    {
29
        $page = $this->request('?debugger=action.php');
0 ignored issues
show
Unused Code introduced by
The assignment to $page is dead and can be removed.
Loading history...
30
    }
31
}
32