コード例 #1
0
ファイル: OptionTest.php プロジェクト: walterjrp/form-builder
 public function testVerificaSetGetLabel()
 {
     $option = new Option('option');
     $option->setLabel('label');
     $this->assertEquals('label', $option->getLabel());
 }