Neos\ContentRepository\Tests\Unit\Domain\Service\ContextTest::getCurrentDateTimeReturnsACurrentDateAndTime PHP Method

getCurrentDateTimeReturnsACurrentDateAndTime() public method

    public function getCurrentDateTimeReturnsACurrentDateAndTime()
    {
        $now = new \DateTime();
        $context = $this->contextFactory->create(array());
        $currentTime = $context->getCurrentDateTime();
        $this->assertInstanceOf('\\DateTimeInterface', $currentTime);
        $this->assertEquals($now->getTimestamp(), $currentTime->getTimestamp(), 1);
    }