mirror of
https://github.com/yiisoft/yii.git
synced 2026-03-03 23:04:04 +01:00
12 lines
247 B
PHP
12 lines
247 B
PHP
<?php
|
|
require 'ValidatorTestModel.php';
|
|
|
|
class CEmailValidatorTest extends CTestCase
|
|
{
|
|
function testEmpty()
|
|
{
|
|
$model = new ValidatorTestModel();
|
|
$model->validate(array('email'));
|
|
$this->assertArrayHasKey('email', $model->getErrors());
|
|
}
|
|
} |