<?php $realpath = Storage::disk('test')->getAdapter()->getPathPrefix().'path/to/asset.jpg';
$this->assertFileExists($realpath);
$imagesize = getimagesize($realpath);
$this->assertEquals([30, 60], array_splice($imagesize, 0, 2));
$dimensions = $this->dimensions->asset($asset);