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

testShippingCompany() 공개 메소드

public testShippingCompany ( )
    public function testShippingCompany()
    {
        $this->card->setShippingCompany('SuperSoft');
        $this->assertEquals('SuperSoft', $this->card->getShippingCompany());
    }
CreditCardTest