public function testEvent()
 {
     $process = new Process('');
     $command = BehatCommand::getInstance();
     $event = new BehatEvent($this->wrapper, $process, $command);
     $this->assertEquals($this->wrapper, $event->getWrapper());
     $this->assertEquals($process, $event->getProcess());
     $this->assertEquals($command, $event->getCommand());
 }