Inheritance: extends LocalizedValidation
コード例 #1
0
ファイル: NoValidationTest.php プロジェクト: cewi/localized
 /**
  * test the ssn method of NoValidation
  *
  * @return void
  */
 public function testSsn()
 {
     $this->assertTrue(NoValidation::personId('12345678901'));
     $this->assertTrue(NoValidation::personId('123456 78901'));
     $this->assertFalse(NoValidation::personId('1234567890'));
     $this->assertFalse(NoValidation::personId('123456 7890'));
 }