Breaking change: VarSetType/VarSetTypeNull classes have been renamed to SetVarType/SetVarTypeNull Added phan/phpstan static checkes and settings Add phpunit tests (in test/phpunit) that are an exact copy from the trunk folder unit tests The phan/phpstan tests have been updated to work with the composer layout config files with static defines needed for certain classes are stored in test/configs (config.php, config.other.php, config.master.php)
34 lines
663 B
PHP
34 lines
663 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace tests;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
/**
|
|
* Test class for Output\Image
|
|
* @coversDefaultClass \CoreLibs\Output\Image
|
|
* @testdox \CoreLibs\Output\Image method tests
|
|
*/
|
|
final class CoreLibsOutputImageTest extends TestCase
|
|
{
|
|
/**
|
|
* Undocumented function
|
|
*
|
|
* @testdox Output\Image Class tests
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testOutputImage()
|
|
{
|
|
// $this->assertTrue(true, 'Output Image Tests not implemented');
|
|
$this->markTestIncomplete(
|
|
'Output\Image Tests have not yet been implemented'
|
|
);
|
|
// $this->markTestSkipped('No implementation for Output\Image at the moment');
|
|
}
|
|
}
|
|
|
|
// __END__
|