Inheritance: extends LocalizedValidation
Example #1
0
 /**
  * test the postal method of BeValidation
  *
  * @return void
  */
 public function testPostal()
 {
     $this->assertTrue(BeValidation::postal('1804'));
     $this->assertFalse(BeValidation::postal('01804'));
 }