Emarref\Jwt\Claim\IssuedAtTest::testDateTimeValue PHP Method

testDateTimeValue() public method

public testDateTimeValue ( )
    public function testDateTimeValue()
    {
        $now = new \DateTime('now', new \DateTimeZone('UTC'));
        $this->claim->setValue($now);
        $this->assertSame($now->getTimestamp(), $this->claim->getValue());
    }