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