Omnipay\Common\CreditCardTest::testBillingLastName PHP Метод

testBillingLastName() публичный Метод

public testBillingLastName ( )
    public function testBillingLastName()
    {
        $this->card->setBillingLastName('Smith');
        $this->assertEquals('Smith', $this->card->getBillingLastName());
        $this->assertEquals('Smith', $this->card->getLastName());
    }
CreditCardTest