示例#1
0
 public function testGeneratedMessage()
 {
     $e = new FileNotFoundException(null, 0, null, '/foo');
     $this->assertEquals('/foo', $e->getPath());
     $this->assertEquals('File "/foo" could not be found.', $e->getMessage(), 'A message should be generated.');
 }