out = new ConsoleOutput(); $this->err = new ConsoleOutput(); $io = new ConsoleIo($this->out, $this->err); $this->Shell = $this->getMock( 'Tools\Shell\InflectShell', ['in', '_stop'], [$io] ); } /** * tearDown * * @return void */ public function tearDown() { parent::tearDown(); unset($this->Shell); } /** * test that the startup method supresses the shell header * * @return void */ public function testMain() { $this->Shell->expects($this->any())->method('in') ->will($this->returnValue('FooBar')); $this->Shell->runCommand(['pluralize']); $output = $this->out->output(); $expected = 'FooBars'; $this->assertContains($expected, $output); $this->Shell->runCommand(['underscore']); $output = $this->out->output(); $expected = 'foo_bar'; $this->assertContains($expected, $output); $this->Shell->runCommand(['dasherize']); $output = $this->out->output(); $expected = 'foo-bar'; $this->assertContains($expected, $output); $this->Shell->runCommand(['slug']); $output = $this->out->output(); $expected = 'foo-bar'; $this->assertContains($expected, $output); $this->Shell->runCommand(['tableize']); $output = $this->out->output(); $expected = 'foo_bar'; $this->assertContains($expected, $output); } }