public function testCanSetData() { $dec = new FloatField(); $dec->setData(10.5); $this->assertTrue(is_float($dec->getData())); }
public function testFloatFieldMinValueValidationError() { $this->setExpectedException('Stato\\Webflow\\Forms\\ValidationError', 'Ensure this value is less than or equal to %s.'); $f = new FloatField(array('min_value' => 4)); $f->clean('3.99'); }