123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?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;
- use Monolog\Logger;
- use Monolog\Handler\NullHandler;
- use PHPExiftool\Exiftool;
- class ExiftoolTest extends \PHPUnit_Framework_TestCase
- {
- /**
- * @covers PHPExiftool\Exiftool::executeCommand
- */
- public function testExecuteCommand()
- {
- $exiftool = new Exiftool($this->getlogger());
- $this->assertRegExp('/\d+\.\d+/', $exiftool->executeCommand('-ver'));
- }
- /**
- * @covers PHPExiftool\Exiftool::executeCommand
- * @covers \PHPExiftool\Exception\RuntimeException
- * @expectedException \PHPExiftool\Exception\RuntimeException
- */
- public function testExecuteCommandFailed()
- {
- $exiftool = new Exiftool($this->getlogger());
- $exiftool->executeCommand('-prout');
- }
- private function getlogger()
- {
- $logger = new Logger('Tests');
- $logger->pushHandler(new NullHandler());
- return $logger;
- }
- }
|