1 | <?php |
||
12 | class DrushDriverTest extends TestCase { |
||
13 | |||
14 | /** |
||
15 | * Tests instantiating the driver with only an alias. |
||
16 | */ |
||
17 | public function testWithAlias() { |
||
21 | |||
22 | /** |
||
23 | * Tests instantiating the driver with a prefixed alias. |
||
24 | */ |
||
25 | public function testWithAliasPrefix() { |
||
29 | |||
30 | /** |
||
31 | * Tests instantiating the driver with only the root path. |
||
32 | */ |
||
33 | public function testWithRoot() { |
||
39 | |||
40 | /** |
||
41 | * Tests instantiating the driver with missing alias and root path. |
||
42 | */ |
||
43 | public function testWithNeither() { |
||
47 | |||
48 | } |
||
49 |