1 | <?php |
||
5 | class NullIOTest extends \PHPUnit_Framework_TestCase |
||
6 | { |
||
7 | /** |
||
8 | * Tests NullIO::isInteractive |
||
9 | */ |
||
10 | public function testIsInteractive() |
||
15 | |||
16 | /** |
||
17 | * Tests NullIO::isDebug |
||
18 | */ |
||
19 | public function testIsDebug() |
||
24 | |||
25 | /** |
||
26 | * Tests NullIO::isVerbose |
||
27 | */ |
||
28 | public function testIsVerbose() |
||
33 | |||
34 | /** |
||
35 | * Tests NullIO::isVeryVerbose |
||
36 | */ |
||
37 | public function testIsVeryVerbose() |
||
42 | |||
43 | /** |
||
44 | * Tests NullIO::writeError |
||
45 | */ |
||
46 | public function testWriteError() |
||
51 | |||
52 | /** |
||
53 | * Tests NullIO::ask |
||
54 | */ |
||
55 | public function testAsk() |
||
60 | |||
61 | /** |
||
62 | * Tests NullIO::askConfirmation |
||
63 | */ |
||
64 | public function testAskConfirmation() |
||
69 | |||
70 | /** |
||
71 | * Tests NullIO::askAbdValidate |
||
72 | */ |
||
73 | public function testAskAndValidate() |
||
78 | } |
||
79 |