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