芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/rentandbuyrealty.com/pay/vendor/wixel/gump/tests/Validators/FloatValidatorTest.php
assertTrue($this->validate(self::RULE, $input)); } public function successProvider() { return [ [0], [1.1], [ '1.1' ], [-1.1], ['-1.1'] ]; } /** * @dataProvider errorProvider */ public function testError($input) { $this->assertNotTrue($this->validate(self::RULE, $input)); } public function errorProvider() { return [ [ '1,1' ], [ '1.0,0' ], [ '1,0.0' ], [ 'text' ] ]; } }