1<?php
2require_once 'Image/Transform/Base.php';
3
4/**
5 * Imagick3 driver test
6 *
7 * @author Christian Weiske <cweiske@php.net>
8 */
9class Image_Transform_Driver_ImlibTest extends Image_Transform_Base
10{
11    /**
12     * Runs the test methods of this class.
13     *
14     * @access public
15     * @static
16     */
17    public static function main()
18    {
19        parent::mainImpl(__CLASS__);
20    }
21
22}
23
24?>