验证器.是否为数字

Testing Is Documentation

tests/Validate/Validator/NumberTest.php验证器.是否为数字 - 图1

Uses

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

验证通过的数据

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

  1. # Tests\Validate\Validator\NumberTest::baseUseProvider
  2. public function baseUseProvider(): array
  3. {
  4. return [
  5. ['42'],
  6. [1337],
  7. [0x539],
  8. [02471],
  9. [0b10100111001],
  10. [1337e0],
  11. [9.1],
  12. ];
  13. }

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

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

未验证通过的数据

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

  1. # Tests\Validate\Validator\NumberTest::badProvider
  2. public function badProvider(): array
  3. {
  4. return [
  5. ['not numeric'],
  6. [[]],
  7. [new stdClass()],
  8. [['foo', 'bar']],
  9. [[1, 2]],
  10. ['this is a string'],
  11. ['foo'],
  12. ['bar'],
  13. ['hello'],
  14. ['world'],
  15. [null],
  16. ];
  17. }

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

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