/**
  * Verifies that we can set and retrieve the directory path.
  */
 public function testPath()
 {
     self::assertEquals($this->dir, $this->event->getPath());
     self::assertSame($this->event, $this->event->setPath('/path/to/b'));
     self::assertEquals('/path/to/b', $this->event->getPath());
 }