CommerceGuys\Addressing\Tests\Validator\Constraints\AddressFormatConstraintValidatorTest::testAndorraOK PHP Method

testAndorraOK() public method

public testAndorraOK ( )
    public function testAndorraOK()
    {
        $address = new Address();
        $address = $address->withCountryCode('AD')->withLocality("Parròquia d'Andorra la Vella")->withPostalCode('AD500')->withAddressLine1('C. Prat de la Creu, 62-64')->withGivenName('Antoni')->withFamilyName('Martí');
        $this->validator->validate($address, $this->constraint);
        $this->assertNoViolation();
    }