* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Tymon\JWTAuth\Test\Claims; use Tymon\JWTAuth\Claims\NotBefore; use Tymon\JWTAuth\Exceptions\InvalidClaimException; use Tymon\JWTAuth\Test\AbstractTestCase; class NotBeforeTest extends AbstractTestCase { /** @test */ public function it_should_throw_an_exception_when_passing_an_invalid_value() { $this->expectException(InvalidClaimException::class); $this->expectExceptionMessage('Invalid value provided for claim [nbf]'); new NotBefore('foo'); } }