コード例 #1
0
ファイル: RoValidationTest.php プロジェクト: cewi/localized
 /**
  * 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'));
 }