Bitpay\InvoiceTest::testSetExpirationTime PHP 메소드

testSetExpirationTime() 공개 메소드

    public function testSetExpirationTime()
    {
        $this->assertNotNull($this->invoice);
        $date = new \DateTime();
        $this->assertNotNull($date);
        $this->invoice->setExpirationTime($date);
        $this->assertSame($date, $this->invoice->getExpirationTime());
    }