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