Exemplo n.º 1
0
 /**
  * @covers Xoops\Form\Radio::addOptionArray
  */
 public function testAddOptionArray()
 {
     $this->object->addOptionArray(array('key' => 'value', 'just_key' => null));
     $value = $this->object->getOptions();
     $this->assertTrue(is_array($value));
     $this->assertSame('value', $value['key']);
     $this->assertSame('just_key', $value['just_key']);
 }