14 lines
217 B
PHP
14 lines
217 B
PHP
<?php
|
|
|
|
class ValidateTest extends PHPUnit_Framework_TestCase
|
|
{
|
|
public function testIsValidTooLong()
|
|
{
|
|
$variable = 'really long string';
|
|
$rules = 'length:16';
|
|
|
|
Validate::isValid($variable, $rules);
|
|
}
|
|
}
|
|
|
|
?>
|