Omnipay\Common\CreditCardTest::testBillingCompany PHP Method

testBillingCompany() public method

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