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());
    }