public function testChecksForMaintenanceMode()
 {
     $scheduledCommand = $this->mockCommand();
     $scheduledCommand->shouldReceive('runInMaintenanceMode')->never();
     App::shouldReceive('isDownForMaintenance')->andReturn(false);
     $this->assertTrue($this->commandService->runnableInCurrentMaintenanceSetting($scheduledCommand));
 }