respect-validation/tests/integration/rules/countryCode.phpt
Henrique Moody 3145426472
Update version of "respect/coding-standard"
With that update, we will be fully following PSR-12.

Signed-off-by: Henrique Moody <henriquemoody@gmail.com>
2020-07-21 22:54:41 +02:00

43 lines
995 B
PHP

--CREDITS--
William Espindola <oi@williamespindola.com.br>
--FILE--
<?php
declare(strict_types=1);
require 'vendor/autoload.php';
use Respect\Validation\Exceptions\CountryCodeException;
use Respect\Validation\Exceptions\NestedValidationException;
use Respect\Validation\Validator as v;
try {
v::countryCode()->check('1');
} catch (CountryCodeException $exception) {
echo $exception->getMessage() . PHP_EOL;
}
try {
v::not(v::countryCode())->check('BR');
} catch (CountryCodeException $exception) {
echo $exception->getMessage() . PHP_EOL;
}
try {
v::countryCode()->assert('1');
} catch (NestedValidationException $exception) {
echo $exception->getFullMessage() . PHP_EOL;
}
try {
v::not(v::countryCode())->assert('BR');
} catch (NestedValidationException $exception) {
echo $exception->getFullMessage() . PHP_EOL;
}
?>
--EXPECT--
"1" must be a valid country
"BR" must not be a valid country
- "1" must be a valid country
- "BR" must not be a valid country