phpOMS/tests/Image/SkewTest.php
Dennis Eichhorn a1b591d141 fix tests
2024-03-20 03:00:25 +00:00

46 lines
904 B
PHP
Executable File

<?php
/**
* Jingga
*
* PHP Version 8.1
*
* @package tests
* @copyright Dennis Eichhorn
* @license OMS License 2.0
* @version 1.0.0
* @link https://jingga.app
*/
declare(strict_types=1);
namespace phpOMS\tests\Image;
require_once __DIR__ . '/../Autoloader.php';
use phpOMS\Image\Skew;
/**
* @testdox phpOMS\tests\Image\SkewTest: Image skew
* @internal
*/
final class SkewTest extends \PHPUnit\Framework\TestCase
{
/**
* @testdox A image can be automatically unskewed
* @group framework
* @group slow
* @covers \phpOMS\Image\Skew
*/
public function testSkew() : void
{
Skew::autoRotate(
__DIR__ . '/tilted.jpg',
__DIR__ . '/test_binary_untilted.jpg',
10,
[150, 75],
[1700, 900]
);
self::assertTrue(\is_file(__DIR__ . '/test_binary_untilted.jpg'));
}
}