Beispiel #1
0
 /**
  * Basic test getting and setting directory
  *
  * @return void
  * @author Dan Cox
  */
 public function test_setGetDirectory()
 {
     $di = new DI('test');
     $this->assertEquals('test', $di->getDirectory());
     $di->setDirectory('foo');
     $this->assertEquals('foo', $di->getDirectory());
 }