Expanded class hierarchy of CacheWarmerTest
class CacheWarmerTest extends \PHPUnit_Framework_TestCase {
protected static $cacheFile;
public static function setUpBeforeClass() {
self::$cacheFile = tempnam(sys_get_temp_dir(), 'sf2_cache_warmer_dir');
}
public static function tearDownAfterClass() {
@unlink(self::$cacheFile);
}
public function testWriteCacheFileCreatesTheFile() {
$warmer = new TestCacheWarmer(self::$cacheFile);
$warmer
->warmUp(dirname(self::$cacheFile));
$this
->assertTrue(file_exists(self::$cacheFile));
}
/**
* @expectedException \RuntimeException
*/
public function testWriteNonWritableCacheFileThrowsARuntimeException() {
$nonWritableFile = '/this/file/is/very/probably/not/writable';
$warmer = new TestCacheWarmer($nonWritableFile);
$warmer
->warmUp(dirname($nonWritableFile));
}
}
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
CacheWarmerTest:: |
protected static | property | ||
CacheWarmerTest:: |
public static | function | ||
CacheWarmerTest:: |
public static | function | ||
CacheWarmerTest:: |
public | function | ||
CacheWarmerTest:: |
public | function | @expectedException \RuntimeException |