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