public function testAddFloatWithCustomStep() { $this->metadata->type = 'float'; $this->metadata->custom['step'] = '0.002'; $this->form->expects($this->once())->method('addText')->with('var', 'Int')->will($this->returnValue($this->control)); $this->controlPrototype->expects($this->any())->method('type')->with('number'); $this->controlPrototype->expects($this->any())->method('step')->with('0.002'); $this->object->addFormControl($this->form, $this->metadata); }