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

49 lines
1.2 KiB
PHP

<?php
use PHPUnit\Framework\TestCase;
class AbstractCommandTest extends TestCase
{
public function tearDown()
{
Mockery::close();
}
public function testArgument()
{
$command = $this->getTestCommand();
$this->assertEquals('foo', $command->argument(0)->value());
$this->assertEquals('bar', $command->argument(1)->value());
}
public function testGetOutput()
{
$command = $this->getTestCommand();
$command->setOutput('foo');
$this->assertEquals('foo', $command->getOutput());
}
public function testHasOutput()
{
$command = $this->getTestCommand();
$this->assertEquals(false, $command->hasOutput());
$command->setOutput('foo');
$this->assertEquals(true, $command->hasOutput());
}
public function testSetOutput()
{
$command = $this->getTestCommand();
$command->setOutput('foo');
$this->assertEquals(true, $command->hasOutput());
}
public function getTestCommand()
{
$arguments = ['foo', 'bar'];
$command = $this->getMockForAbstractClass('\Intervention\Image\Commands\AbstractCommand', [$arguments]);
return $command;
}
}