Files
bm/public_html/vendor/intervention/image/tests/AbstractDriverTest.php
2025-09-24 13:26:28 +02:00

22 lines
534 B
PHP

<?php
use PHPUnit\Framework\TestCase;
class AbstractDriverTest extends TestCase
{
public function tearDown()
{
Mockery::close();
}
/**
* @expectedException \Intervention\Image\Exception\NotSupportedException
*/
public function testExecuteCommand()
{
$image = Mockery::mock('Intervention\Image\Image');
$driver = $this->getMockForAbstractClass('\Intervention\Image\AbstractDriver');
$command = $driver->executeCommand($image, 'xxxxxxxxxxxxxxxxxxxxxxx', []);
}
}