예제 #1
0
 public function testPostCodeIsValid()
 {
     $main = '[1-9]{1}[0-9]{2}[0,1,4,5,9]{1}';
     $pattern = "/^({$main})|({$main}-[0-9]{3})+\$/";
     $postcode = $this->faker->postcode();
     $this->assertSame(preg_match($pattern, $postcode), 1, $postcode);
 }
예제 #2
0
 /**
  * Test the validity of Canadian postcode
  */
 public function testPostcode()
 {
     $postcode = $this->faker->postcode();
     $this->assertNotEmpty($postcode);
     $this->assertInternalType('string', $postcode);
     $this->assertRegExp('/^[A-Za-z]\\d[A-Za-z][ -]?\\d[A-Za-z]\\d$/', $postcode);
 }
예제 #3
0
 /**
  *
  */
 public function testPostcode()
 {
     $postcode = $this->faker->postcode();
     $this->assertNotEmpty($postcode);
     $this->assertInternalType('string', $postcode);
     $this->assertRegExp('@^(GIR ?0AA|[A-PR-UWYZ]([0-9]{1,2}|([A-HK-Y][0-9]([0-9ABEHMNPRV-Y])?)|[0-9][A-HJKPS-UW]) ?[0-9][ABD-HJLNP-UW-Z]{2})$@i', $postcode);
 }
예제 #4
0
 /**
  *
  */
 public function testPostcodeIsNotEmptyAndIsValid()
 {
     $postcode = $this->faker->postcode();
     $this->assertNotEmpty($postcode);
     $this->assertInternalType('string', $postcode);
 }