예제 #1
0
 public function testCityPrefix()
 {
     $cityPrefix = $this->faker->cityPrefix();
     $this->assertNotEmpty($cityPrefix);
     $this->assertInternalType('string', $cityPrefix);
     $this->assertRegExp('/[A-Z][a-z]+/', $cityPrefix);
 }