Exemplo n.º 1
0
 public function testValidIncludePath()
 {
     $path = get_include_path();
     $array = explode(PATH_SEPARATOR, $path);
     $E = new ExceptionPath();
     $this->assertEquals($array, $E->getPathAsArray());
 }
Exemplo n.º 2
0
 public function testValidPath()
 {
     $E = new ExceptionPath();
     $this->assertEquals(get_include_path(), $E->getPath());
 }