1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?php
- /**
- * This file is part of the PHPExiftool package.
- *
- * (c) Alchemy <support@alchemy.fr>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace PHPExiftool\Test\Server;
- require_once __DIR__ . '/../AbstractWriterTest.php';
- use PHPExiftool\ExiftoolServer;
- use PHPExiftool\Test\AbstractWriterTest;
- class WriterTest extends AbstractWriterTest
- {
- protected $exiftool;
- public function setUp()
- {
- $this->markTestSkipped('Currently disable server support');
- $this->exiftool = new ExiftoolServer();
- $this->exiftool->start();
- parent::setUp();
- }
- public function tearDown()
- {
- parent::tearDown();
- if ($this->exiftool) {
- $this->exiftool->stop();
- }
- }
- protected function getExiftool()
- {
- return $this->exiftool;
- }
- }
|