Commit 45e472cc by Carsten Brandt

added unit tests for #5249

parent 658c91a7
...@@ -80,6 +80,8 @@ class DateValidatorTest extends TestCase ...@@ -80,6 +80,8 @@ class DateValidatorTest extends TestCase
$this->assertTrue($val->validate('2013-09-13')); $this->assertTrue($val->validate('2013-09-13'));
$this->assertFalse($val->validate('31.7.2013')); $this->assertFalse($val->validate('31.7.2013'));
$this->assertFalse($val->validate('31-7-2013')); $this->assertFalse($val->validate('31-7-2013'));
$this->assertFalse($val->validate('asdasdfasfd'));
$this->assertFalse($val->validate(''));
$this->assertFalse($val->validate(time())); $this->assertFalse($val->validate(time()));
$val->format = 'php:U'; $val->format = 'php:U';
$this->assertTrue($val->validate(time())); $this->assertTrue($val->validate(time()));
...@@ -94,6 +96,8 @@ class DateValidatorTest extends TestCase ...@@ -94,6 +96,8 @@ class DateValidatorTest extends TestCase
$this->assertTrue($val->validate('2013-09-13')); $this->assertTrue($val->validate('2013-09-13'));
$this->assertFalse($val->validate('31.7.2013')); $this->assertFalse($val->validate('31.7.2013'));
$this->assertFalse($val->validate('31-7-2013')); $this->assertFalse($val->validate('31-7-2013'));
$this->assertFalse($val->validate('asdasdfasfd'));
$this->assertFalse($val->validate(''));
$this->assertFalse($val->validate(time())); $this->assertFalse($val->validate(time()));
$val->format = 'dd.MM.yyyy'; $val->format = 'dd.MM.yyyy';
$this->assertTrue($val->validate('31.7.2013')); $this->assertTrue($val->validate('31.7.2013'));
...@@ -101,7 +105,7 @@ class DateValidatorTest extends TestCase ...@@ -101,7 +105,7 @@ class DateValidatorTest extends TestCase
$this->assertTrue($val->validate('2009-02-15 15:16:17')); $this->assertTrue($val->validate('2009-02-15 15:16:17'));
} }
public function testIntlValidateAttributePHP() public function testIntlValidateAttributePHPFormat()
{ {
$this->testValidateAttributePHPFormat(); $this->testValidateAttributePHPFormat();
} }
...@@ -138,7 +142,7 @@ class DateValidatorTest extends TestCase ...@@ -138,7 +142,7 @@ class DateValidatorTest extends TestCase
} }
public function testIntlValidateAttributeICU() public function testIntlValidateAttributeICUFormat()
{ {
$this->testValidateAttributeICUFormat(); $this->testValidateAttributeICUFormat();
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment