public function testNotRunnableInEnvironment()
 {
     $scheduledCommand = $this->mockCommand(array('local', 'development'));
     App::shouldReceive('environment')->andReturn('amazonAWS');
     $this->assertFalse($this->commandService->runnableInEnvironment($scheduledCommand));
 }