Omnipay\Common\CreditCardTest::testBillingCountry PHP Method

testBillingCountry() public method

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