Omnipay\Common\CreditCardTest::testBillingAddress2 PHP Method

testBillingAddress2() public method

public testBillingAddress2 ( )
    public function testBillingAddress2()
    {
        $this->card->setBillingAddress2('Suburb');
        $this->assertEquals('Suburb', $this->card->getBillingAddress2());
        $this->assertEquals('Suburb', $this->card->getAddress2());
    }
CreditCardTest