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