コード例 #1
0
ファイル: ElementTest.php プロジェクト: slkxmail/App
 public function testSetValueOptions()
 {
     $element = new Element('test');
     $options = array('0' => 'test');
     $element->setValueOptions($options);
     $this->assertEquals($options, $element->getValueOptions());
 }