验证器.值是否为空
Testing Is Documentation
Uses
php
<?php
use Leevel\Kernel\Utils\Api;
use Leevel\Validate\Validator;
use PHPUnit\Framework\Attributes\DataProvider;
验证通过的数据
以下是通过的校验数据示例。
php
# Tests\Validate\Validator\IsEmptyTest::baseUseProvider
public static function baseUseProvider(): array
{
$val = null;
return [
[''],
[0],
[0.0],
['0'],
[null],
[false],
[[]],
[$val],
];
}
上面的数据是测试的数据提供者。
php
public function testBaseUse($value): void
{
$validate = new Validator(
[
'name' => $value,
],
[
'name' => 'is_empty',
]
);
self::assertTrue($validate->success());
}
未验证通过的数据
以下是未通过的校验数据示例。
php
# Tests\Validate\Validator\IsEmptyTest::badProvider
public static function badProvider(): array
{
return [
[' '],
['not numeric'],
[new \stdClass()],
[['foo', 'bar']],
[[1, 2]],
['this is a string'],
['foo'],
['bar'],
['hello'],
['world'],
[true],
[1],
[[[], []]],
];
}
上面的数据是测试的数据提供者。
php
public function testBad($value): void
{
$validate = new Validator(
[
'name' => $value,
],
[
'name' => 'is_empty',
]
);
self::assertFalse($validate->success());
}