Run the base tests with the Locale module disabled.

Hierarchy

Expanded class hierarchy of TestsWithDefaultEnvironmentTestCase

File

./exif_functionaltests_with_defaults.test, line 8

View source
class TestsWithDefaultEnvironmentTestCase extends ExifFunctionalTestCase {
    
    /**
     * {@inheritdoc}
     */
    public function initModules() {
        return array(
            'exif',
            'date',
        );
    }
    
    /**
     * {@inheritdoc}
     */
    public static function getInfo() {
        return array(
            'name' => 'EXIF Interface Test with default environmment (Locale module is desactivated).',
            'description' => 'create node with exif metadata and ensure metadata is correctly calculated and displayed',
            'group' => 'exif',
        );
    }

}

Members