예제 #1
0
 /**
  * Test the validity of province
  */
 public function testProvince()
 {
     $province = $this->faker->province();
     $this->assertNotEmpty($province);
     $this->assertInternalType('string', $province);
     $this->assertRegExp('/[A-Z][a-z]+/', $province);
 }