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