public function testFire()
 {
     $scheduleService = new ScheduleSummary(m::mock('Indatus\\Dispatcher\\Services\\ScheduleService', function ($m) {
         $m->shouldReceive('printSummary')->once();
     }));
     $scheduleService->fire();
 }
 public function testDescription()
 {
     $this->assertEquals('View a summary of all scheduled artisan commands', $this->command->getDescription());
 }