Beispiel #1
0
 /**
  * test the postal method of RoValidation
  *
  * @return void
  */
 public function testPostal()
 {
     $this->assertTrue(RoValidation::postal('517006'));
     $this->assertFalse(RoValidation::postal('23708'));
     $this->assertFalse(RoValidation::postal('23 708'));
 }