コード例 #1
0
ファイル: BaseFormTest.php プロジェクト: cross-solution/yawik
 /**
  * @expectedException InvalidArgumentException
  * @expectedExceptionMessage For the Form Core\Form\BaseForm there is no Basefieldset
  */
 public function testInitWithoutBaseForm()
 {
     $target = new BaseForm();
     $target->init();
     $this->assertEquals($target, null);
 }