@expectedException \RuntimeException
public function testWriteNonWritableCacheFileThrowsARuntimeException() {
$nonWritableFile = '/this/file/is/very/probably/not/writable';
$warmer = new TestCacheWarmer($nonWritableFile);
$warmer
->warmUp(dirname($nonWritableFile));
}