1 | <?php |
||
24 | class ShopifyInstallShellTest extends TestCase |
||
25 | { |
||
26 | |||
27 | public function setUp() |
||
|
|||
28 | { |
||
29 | parent::setUp(); |
||
30 | |||
31 | $this->out = new ConsoleOutput(); |
||
32 | $io = new ConsoleIo($this->out); |
||
33 | $this->Shell = $this->getMockBuilder('ShopifyInstallShell') |
||
34 | ->setMethods(['in', 'err', '_stop', 'clear']) |
||
35 | ->setConstructorArgs([]) |
||
36 | ->getMock(); |
||
37 | } |
||
38 | |||
39 | public function tearDown() |
||
44 | |||
45 | public function testMain() |
||
54 | } |
||
55 |