芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/rentandbuyrealty.com/pay/vendor/wixel/gump/tests/Validators/Guidv4ValidatorTest.php
assertTrue($this->validate(self::RULE, $input)); } public function successProvider() { return [ ['A98C5A1E-A742-4808-96FA-6F409E799937'], ['7deca41a-3479-4f18-9771-3531f742061b'], ]; } /** * @dataProvider errorProvider */ public function testError($input) { $this->assertNotTrue($this->validate(self::RULE, $input)); } public function errorProvider() { return [ ['A98C5A1EA742480896FA6F409E799937'], ['7deca41a-9771-3531f742061b'], ]; } public function testWhenInputIsEmptyAndNotRequiredIsSuccess() { $this->assertTrue($this->validate(self::RULE, '')); } }