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

testJapan() public method

public testJapan ( )
    public function testJapan()
    {
        $address = new Address();
        $address = $address->withCountryCode('JP')->withAdministrativeArea('Kyoto')->withLocality('Shigeru Miyamoto')->withPostalCode('601-8501')->withAddressLine1('11-1 Kamitoba-hokotate-cho')->withGivenName('John')->withFamilyName('Smith');
        $this->validator->validate($address, $this->constraint);
        $this->assertNoViolation();
    }