1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
<?php
/**
* Test the Ansel_Image class.
*
* PHP version 5
*
* @category Horde
* @package Ansel
* @subpackage UnitTests
* @author Michael J Rubinsky <mrubinsk@horde.org>
* @link http://www.horde.org/apps/ansel
* @license http://www.horde.org/licenses/gpl GNU General Public License, version 2
*/
/**
* Test the Ansel_Image class
*
* Copyright 2011-2017 Horde LLC (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (GPLv2). If you did not
* receive this file, see http://www.horde.org/licenses/gpl
*
* @category Horde
* @package Ansel
* @subpackage UnitTests
* @author Michael J Rubinsky <mrubinsk@horde.org>
* @link http://www.horde.org/apps/ansel
* @license http://www.horde.org/licenses/gpl GNU General Public License, version 2
*/
class Ansel_Unit_ImageTest extends Ansel_Unit_Base
{
public function testExif()
{
$this->markTestIncomplete();
$params = array(
'image_id' => 4200,
'image_filename' => 'exif_test.jpg',
);
$image = new Ansel_Image($params);
$exif = $image->getExif(false);
}
}
|