MockFactoryTest::testParamsPluginMockFactory()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
3
namespace DmTestTest\Controller\Plugin;
4
5
use DmTest\Controller\Plugin\MockFactory;
6
7
class MockFactoryTest extends \PHPUnit_Framework_TestCase
8
{
9
    /** @var MockFactory */
10
    protected $sut;
11
12
    public function setUp()
13
    {
14
        $this->sut = new MockFactory($this);
15
    }
16
17
    /**
18
     * @covers DmTest\Controller\Plugin\MockFactory
19
     */
20
    public function testPluginMockFactory()
21
    {
22
        $this->markTestIncomplete();
23
    }
24
25
    /**
26
     * @covers DmTest\Controller\Plugin\MockFactory
27
     */
28
    public function testFlashMessengerPluginMockFactory()
29
    {
30
        $this->markTestIncomplete();
31
    }
32
33
    /**
34
     * @covers DmTest\Controller\Plugin\MockFactory
35
     */
36
    public function testResponseMockFactory()
37
    {
38
        $this->markTestIncomplete();
39
    }
40
41
    /**
42
     * @covers DmTest\Controller\Plugin\MockFactory
43
     */
44
    public function testRedirectPluginMockFactory()
45
    {
46
        $this->markTestIncomplete();
47
    }
48
49
    /**
50
     * @covers DmTest\Controller\Plugin\MockFactory
51
     */
52
    public function testRequestPluginMockFactory()
53
    {
54
        $this->markTestIncomplete();
55
    }
56
57
    /**
58
     * @covers DmTest\Controller\Plugin\MockFactory
59
     */
60
    public function testParamsPluginMockFactory()
61
    {
62
        $this->markTestIncomplete();
63
    }
64
65
    /**
66
     * @covers DmTest\Controller\Plugin\MockFactory
67
     */
68
    public function testUrlMockFactory()
69
    {
70
        $this->markTestIncomplete();
71
    }
72
}
73