mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
589fee1a8a
Taken care of by the default PHPUnit implementation of markTestSkipped()
22 lines
434 B
PHP
22 lines
434 B
PHP
<?php
|
|
|
|
class GDImageTest extends ImageTest {
|
|
|
|
public function setUp() {
|
|
parent::setUp();
|
|
|
|
if(!extension_loaded("gd")) {
|
|
$this->markTestSkipped("The GD extension is required");
|
|
return;
|
|
}
|
|
|
|
Config::inst()->update('Injector', 'Image_Backend', 'GDBackend');
|
|
}
|
|
|
|
public function tearDown() {
|
|
$cache = SS_Cache::factory('GDBackend_Manipulations');
|
|
$cache->clean(Zend_Cache::CLEANING_MODE_ALL);
|
|
parent::tearDown();
|
|
}
|
|
}
|