Bitpay\InvoiceTest::testSetCurrentTime PHP Method

testSetCurrentTime() public method

public testSetCurrentTime ( )
    public function testSetCurrentTime()
    {
        $this->assertNotNull($this->invoice);
        $date = new \DateTime();
        $this->assertNotNull($date);
        $this->invoice->setCurrentTime($date);
        $this->assertSame($date, $this->invoice->getCurrentTime());
    }