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