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

testBillingCompany() 공개 메소드

public testBillingCompany ( )
    public function testBillingCompany()
    {
        $this->card->setBillingCompany('SuperSoft');
        $this->assertEquals('SuperSoft', $this->card->getBillingCompany());
        $this->assertEquals('SuperSoft', $this->card->getCompany());
    }
CreditCardTest