Inheritance: extends LocalizedValidation
コード例 #1
0
ファイル: ChValidationTest.php プロジェクト: cewi/localized
 /**
  * test the postal method of ChValidation
  *
  * @return void
  */
 public function testPostal()
 {
     $this->assertTrue(ChValidation::postal('5112'));
     $this->assertFalse(ChValidation::postal('05112'));
 }