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