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

testStartDate() 공개 메소드

public testStartDate ( )
    public function testStartDate()
    {
        $this->card->setStartMonth('11');
        $this->card->setStartYear('2012');
        $this->assertEquals('112012', $this->card->getStartDate('mY'));
    }
CreditCardTest