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_Imagick3Test 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    /**
25     * Resize image from 4x4 to 2x2
26     *
27     * @return void
28     */
29    public function testResize()
30    {
31        $this->nMaxAverageDiff = 51;
32        return parent::testResize();
33    }//public function testResize()
34
35}
36
37
38?>