Completed
Push — sf2.7 ( 18de34...b252b6 )
by Laurent
18:26
created

InstallControllerTest::tearDown()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 3
rs 10
cc 1
eloc 1
nc 1
nop 0
1
<?php
2
3
namespace AppBundle\Controller\install;
4
5
/**
6
 * Generated by PHPUnit_SkeletonGenerator on 2016-02-15 at 17:17:22.
7
 */
8
class InstallControllerTest extends \PHPUnit_Framework_TestCase {
9
10
    /**
11
     * @var InstallController
12
     */
13
    protected $object;
14
15
    /**
16
     * Sets up the fixture, for example, opens a network connection.
17
     * This method is called before a test is executed.
18
     */
19
    protected function setUp() {
20
        $this->object = new InstallController;
21
    }
22
23
    /**
24
     * Tears down the fixture, for example, closes a network connection.
25
     * This method is called after a test is executed.
26
     */
27
    protected function tearDown() {
28
        
29
    }
30
31
    /**
32
     * @covers AppBundle\Controller\install\InstallController::indexAction
33
     * @todo   Implement testIndexAction().
34
     */
35
    public function testIndexAction() {
36
        // Remove the following lines when you implement this test.
37
        $this->markTestIncomplete(
38
            'This test has not been implemented yet.'
39
        );
40
    }
41
42
    /**
43
     * @covers AppBundle\Controller\install\InstallController::step1Action
44
     * @todo   Implement testStep1Action().
45
     */
46
    public function testStep1Action() {
47
        // Remove the following lines when you implement this test.
48
        $this->markTestIncomplete(
49
            'This test has not been implemented yet.'
50
        );
51
    }
52
53
    /**
54
     * @covers AppBundle\Controller\install\InstallController::step2Action
55
     * @todo   Implement testStep2Action().
56
     */
57
    public function testStep2Action() {
58
        // Remove the following lines when you implement this test.
59
        $this->markTestIncomplete(
60
            'This test has not been implemented yet.'
61
        );
62
    }
63
64
}
65