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

testStartYearTwoDigits() 공개 메소드

    public function testStartYearTwoDigits()
    {
        $this->card->setStartYear('12');
        $this->assertSame(2012, $this->card->getStartYear());
    }
CreditCardTest