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