Neos\Eel\Tests\Unit\DateHelperTest::nowWorks PHP Method

nowWorks() public method

public nowWorks ( )
    public function nowWorks()
    {
        $helper = new DateHelper();
        $result = $helper->now();
        $this->assertInstanceOf(\DateTime::class, $result);
        $this->assertEquals(time(), (int) $result->format('U'), 'Now should be now', 1);
    }