21 lines
456 B
PHP
21 lines
456 B
PHP
|
<?php
|
||
|
|
||
|
namespace Engelsystem\Test\Unit\Http\Validation\Rules;
|
||
|
|
||
|
use Engelsystem\Http\Validation\Rules\NotIn;
|
||
|
use Engelsystem\Test\Unit\TestCase;
|
||
|
|
||
|
class NotInTest extends TestCase
|
||
|
{
|
||
|
/**
|
||
|
* @covers \Engelsystem\Http\Validation\Rules\NotIn::validate
|
||
|
*/
|
||
|
public function testConstruct()
|
||
|
{
|
||
|
$rule = new NotIn('foo,bar');
|
||
|
|
||
|
$this->assertTrue($rule->validate('lorem'));
|
||
|
$this->assertFalse($rule->validate('foo'));
|
||
|
}
|
||
|
}
|