コード例 #1
0
ファイル: SampleTest.php プロジェクト: seytar/psx
 /**
  * @expectedException \RuntimeException
  */
 public function testGenerateMissingValue()
 {
     $generator = new Sample(Sample::FORMAT_JSON);
     $generator->setData(array());
     $generator->generate($this->getSchema());
 }