public function onStartedHandling(HasStartedHandling $event)
 {
     $this->output->writeln(sprintf('<info>Start running <comment>%d</comment> providers</info>', count($event->getEntries())));
 }
 public function testConstruction()
 {
     $testedInstance = new HasStartedHandling(['entries']);
     $this->assertEquals(['entries'], $testedInstance->getEntries());
 }