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

testSortingCode() public method

public testSortingCode ( )
    public function testSortingCode()
    {
        // US doesn't use sorting codes, so there's no good example here.
        $address = (new Address())->withSortingCode('94043');
        $this->assertEquals('94043', $address->getSortingCode());
    }