验证器.检测字符串中的字符是否都是数字,负数和小数会检测不通过

Testing Is Documentation

tests/Validate/Validator/DigitTest.php验证器.检测字符串中的字符是否都是数字,负数和小数会检测不通过 - 图1

Uses

  1. <?php
  2. use Leevel\Validate\Validator;

验证通过的数据

以下是通过的校验数据示例。

  1. # Tests\Validate\Validator\DigitTest::baseUseProvider
  2. public function baseUseProvider(): array
  3. {
  4. return [
  5. ['01'],
  6. ['0'],
  7. ['10002'],
  8. ['42'],
  9. ];
  10. }

上面的数据是测试的数据提供者。

  1. public function testBaseUse($value): void
  2. {
  3. $validate = new Validator(
  4. [
  5. 'name' => $value,
  6. ],
  7. [
  8. 'name' => 'digit',
  9. ]
  10. );
  11. $this->assertTrue($validate->success());
  12. }

未验证通过的数据

以下是未通过的校验数据示例。

  1. # Tests\Validate\Validator\DigitTest::badProvider
  2. public function badProvider(): array
  3. {
  4. return [
  5. ['1820.20'],
  6. ['wsl!12'],
  7. [-42],
  8. [42],
  9. ['2018-12-42'],
  10. [''],
  11. [[1, 2]],
  12. ];
  13. }

上面的数据是测试的数据提供者。

  1. public function testBad($value): void
  2. {
  3. $validate = new Validator(
  4. [
  5. 'name' => $value,
  6. ],
  7. [
  8. 'name' => 'digit',
  9. ]
  10. );
  11. $this->assertFalse($validate->success());
  12. }