public function testProcessorManagerIsAccessible()
 {
     $handler = EventHandler::create()->build();
     $this->assertInstanceOf('Ikwattro\\GithubEvent\\EventProcessorManager', $handler->getEventProcessorManager());
 }
 public function setUp()
 {
     $this->handler = EventHandler::create()->build();
     $this->events = json_decode(file_get_contents(__DIR__ . '/../events.json'), true);
 }