예제 #1
0
 /**
  * Verifies that we can set and retrieve the base directory path.
  */
 public function testBase()
 {
     self::assertEquals($this->base, $this->event->getBase());
     self::assertSame($this->event, $this->event->setBase('/path/to/b'));
     self::assertEquals('/path/to/b', $this->event->getBase());
 }