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