コード例 #1
0
 public function testState()
 {
     $state = $this->faker->state();
     $this->assertNotEmpty($state);
     $this->assertInternalType('string', $state);
     $this->assertRegExp('/[A-Z][a-z]+/', $state);
 }