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

testBillingFax() 공개 메소드

public testBillingFax ( )
    public function testBillingFax()
    {
        $this->card->setBillingFax('54321');
        $this->assertSame('54321', $this->card->getBillingFax());
        $this->assertSame('54321', $this->card->getFax());
    }
CreditCardTest