read() public method

public read ( )
Exemplo n.º 1
0
 /**
  * @expectedException \UnexpectedValueException
  */
 function testReadThrowsExceptionWhenNotFound()
 {
     $env = new Environment();
     $manifest = new Manifest($env, __DIR__ . "/foo.json");
     $manifest->read();
 }