Further Drupal 8.6.4 changes. Some core files were not committed before a commit...
[yaffs-website] / vendor / lsolesen / pel / test / Bug2979466Test.php
1 <?php
2 /**
3  * PEL: PHP Exif Library.
4  * A library with support for reading and
5  * writing all Exif headers in JPEG and TIFF images using PHP.
6  *
7  * Copyright (C) 2004, 2006, 2007 Martin Geisler.
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program in the file COPYING; if not, write to the
21  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
22  * Boston, MA 02110-1301 USA
23  */
24
25 use lsolesen\pel\PelJpeg;
26
27 class Bug2979466Test extends \PHPUnit_Framework_TestCase
28 {
29     function testThisDoesNotWorkAsExpected()
30     {
31         $file = dirname(__FILE__) . '/images/bug2979466.jpg';
32         // TODO Out of memory
33         $this->markTestIncomplete(
34           'This test fails and should be fixed.'
35         );
36         try {
37             require_once 'PelJpeg.php';
38             $jpeg = new PelJpeg($file);
39         } catch (Exception $e) {
40             $this->fail('Test should not throw an exception');
41         }
42     }
43 }