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