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