PhpBench\Tests\Unit\Storage\UuidResolverTest::testResolveLatestNotKeyword PHP Method

testResolveLatestNotKeyword() public method

It should return the given UUID it is not a token.
    public function testResolveLatestNotKeyword()
    {
        $this->storage->history()->shouldNotBeCalled();
        $uuid = $this->resolver->resolve(1234);
        $this->assertEquals(1234, $uuid);
    }