예제 #1
0
 /**
  * Test the pesel method of PlValidation
  *
  * @return void
  */
 public function testPesel()
 {
     $this->assertTrue(PlValidation::pesel('49040501580'));
     $this->assertFalse(PlValidation::pesel('49040501680'));
     $this->assertFalse(PlValidation::pesel('49040501581'));
 }