Omnipay\Common\CreditCardTest::testStartMonthLeadingZeros PHP Метод

testStartMonthLeadingZeros() публичный Метод

    public function testStartMonthLeadingZeros()
    {
        $this->card->setStartMonth('09');
        $this->assertSame(9, $this->card->getStartMonth());
    }
CreditCardTest