Example #1
0
 /**
  * Tests getAbsolutePath method
  *
  * @return void
  */
 public function testAbsolutePath()
 {
     $classLoader = new ClassLoader();
     $classLoader->setBasePath("x\\y");
     $result = $classLoader->getAbsolutePath("f");
     $this->assertSame("x\\y" . DIRECTORY_SEPARATOR . "f", $result);
 }