Emarref\Jwt\Claim\ExpirationTest::testTimestampValue PHP Метод

testTimestampValue() публичный Метод

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