Omnipay\Common\CreditCardTest::testBillingCountry PHP 메소드

testBillingCountry() 공개 메소드

public testBillingCountry ( )
    public function testBillingCountry()
    {
        $this->card->setBillingCountry('US');
        $this->assertEquals('US', $this->card->getBillingCountry());
        $this->assertEquals('US', $this->card->getCountry());
    }
CreditCardTest