PhpBench\Tests\Unit\Storage\Driver\DbalDriverTest::testFetchNonExisting PHP Method

testFetchNonExisting() public method

It should throw an exception if getting a non-existant run.
    public function testFetchNonExisting()
    {
        $this->repository->hasRun('1234')->willReturn(false);
        $this->driver->fetch('1234');
    }