验证器.是否双精度浮点数
Testing Is Documentation
Uses
php
<?php
use Leevel\Kernel\Utils\Api;
use Leevel\Validate\Validator;
use PHPUnit\Framework\Attributes\DataProvider;
验证通过的数据
以下是通过的校验数据示例。
php
# Tests\Validate\Validator\DoubleTest::baseUseProvider
public static function baseUseProvider(): array
{
return [
['0.1'],
['-90.55'],
['1.0'],
['42'],
['1820'],
[-42],
[42],
];
}
上面的数据是测试的数据提供者。
php
public function testBaseUse($value): void
{
$validate = new Validator(
[
'name' => $value,
],
[
'name' => 'double',
]
);
self::assertTrue($validate->success());
}
未验证通过的数据
以下是未通过的校验数据示例。
php
# Tests\Validate\Validator\DoubleTest::badProvider
public static function badProvider(): array
{
return [
['--1820'],
['wsl!12'],
['2018-12-42'],
[''],
[[1, 2]],
];
}
上面的数据是测试的数据提供者。
php
public function testBad($value): void
{
$validate = new Validator(
[
'name' => $value,
],
[
'name' => 'double',
]
);
self::assertFalse($validate->success());
}