1 | <?php |
||
25 | class CreateCommandTest extends \PHPUnit_Framework_TestCase |
||
26 | { |
||
27 | /** |
||
28 | * @var CreateCommand |
||
29 | */ |
||
30 | private $fixture; |
||
31 | |||
32 | /** @var LocalFile */ |
||
33 | private $file; |
||
34 | |||
35 | /** @var ProjectFactoryStrategies */ |
||
36 | private $strategies; |
||
37 | |||
38 | protected function setUp() |
||
44 | |||
45 | /** |
||
46 | * @covers ::getFile |
||
47 | */ |
||
48 | public function testGetFile() |
||
52 | |||
53 | /** |
||
54 | * @covers ::getStrategies |
||
55 | */ |
||
56 | public function testGetStrategies() |
||
60 | } |
||
61 |