CommerceGuys\Addressing\Tests\AddressTest::testDependentLocality PHP Method

testDependentLocality() public method

    public function testDependentLocality()
    {
        // US doesn't use dependent localities, so there's no good example here.
        $address = (new Address())->withDependentLocality('Mountain View');
        $this->assertEquals('Mountain View', $address->getDependentLocality());
    }