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

testBillingPhone() 공개 메소드

public testBillingPhone ( )
    public function testBillingPhone()
    {
        $this->card->setBillingPhone('12345');
        $this->assertSame('12345', $this->card->getBillingPhone());
        $this->assertSame('12345', $this->card->getPhone());
    }
CreditCardTest