Move all tests into sub folders for a more clear structure
This commit is contained in:
33
4dev/tests/Output/CoreLibsOutputFormTokenTest.php
Normal file
33
4dev/tests/Output/CoreLibsOutputFormTokenTest.php
Normal file
@@ -0,0 +1,33 @@
|
||||
<?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__
|
||||
Reference in New Issue
Block a user