コード例 #1
0
 public function testAddIntegers()
 {
     $this->object->add('one', 1);
     $this->object->add('negone', -1);
     $this->assertEquals(array('negone' => array('default' => -1, 'value' => null, 'consumed' => false, 'type' => FormOptions::INT), 'one' => array('default' => 1, 'value' => null, 'consumed' => false, 'type' => FormOptions::INT)), $this->object->getOptions());
 }