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
733 B
PHP
34 lines
733 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace tests;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
/**
|
|
* Test class for Output\Form\Generate
|
|
* @coversDefaultClass \CoreLibs\Output\Form\Generate
|
|
* @testdox \CoreLibs\Output\Form\Generate method tests
|
|
*/
|
|
final class CoreLibsOutputFormGenerateTest extends TestCase
|
|
{
|
|
/**
|
|
* Undocumented function
|
|
*
|
|
* @testdox Output\Form\Generate Class tests
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testOutputFormGenerate()
|
|
{
|
|
/* $this->assertTrue(true, 'Output Form Generate Tests not implemented');
|
|
$this->markTestIncomplete(
|
|
'Output\Form\Generate Tests have not yet been implemented'
|
|
); */
|
|
$this->markTestSkipped('No implementation for Output\Form\Generate at the moment');
|
|
}
|
|
}
|
|
|
|
// __END__
|