Faker\Provider\pl_PL\AddressTest::testState PHP Method

testState() public method

Test the validity of state
public testState ( )
    public function testState()
    {
        $state = $this->faker->state();
        $this->assertNotEmpty($state);
        $this->assertInternalType('string', $state);
        $this->assertRegExp('/[a-z]+/', $state);
    }