object = TestingAccessWrapper::newFromObject( new FormOptions() );
}
/**
* @covers MediaWiki\Html\FormOptions::add
*/
public function testAddStringOption() {
$this->object->add( 'foo', 'string value' );
$this->assertEquals(
[
'foo' => [
'default' => 'string value',
'consumed' => false,
'type' => FormOptions::STRING,
'value' => null,
]
],
$this->object->options
);
}
/**
* @covers MediaWiki\Html\FormOptions::add
*/
public function testAddIntegers() {
$this->object->add( 'one', 1 );
$this->object->add( 'negone', -1 );
$this->assertEquals(
[
'negone' => [
'default' => -1,
'value' => null,
'consumed' => false,
'type' => FormOptions::INT,
],
'one' => [
'default' => 1,
'value' => null,
'consumed' => false,
'type' => FormOptions::INT,
]
],
$this->object->options
);
}
}