Files
development/4dev/tests/CoreLibsOutputFormTokenTest.php
Clemens Schwaighofer 6c3c1a908d PHPunit fixes for PHP 7.4
2022-04-25 17:01:28 +09:00

34 lines
703 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__