Move all tests into sub folders for a more clear structure
This commit is contained in:
33
4dev/tests/Output/CoreLibsOutputProgressbarTest.php
Normal file
33
4dev/tests/Output/CoreLibsOutputProgressbarTest.php
Normal file
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace tests;
|
||||
|
||||
use PHPUnit\Framework\TestCase;
|
||||
|
||||
/**
|
||||
* Test class for Output\Progressbar
|
||||
* @coversDefaultClass \CoreLibs\Output\Progressbar
|
||||
* @testdox \CoreLibs\Output\Progressbar method tests
|
||||
*/
|
||||
final class CoreLibsOutputProgressbarTest extends TestCase
|
||||
{
|
||||
/**
|
||||
* Undocumented function
|
||||
*
|
||||
* @testdox Output\Progressbar Class tests
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function testOutputProgressbar()
|
||||
{
|
||||
// $this->assertTrue(true, 'Output Progressbar Tests not implemented');
|
||||
// $this->markTestIncomplete(
|
||||
// 'Output\Progressbar Tests have not yet been implemented'
|
||||
// );
|
||||
$this->markTestSkipped('No implementation for Output\Progressbar at the moment');
|
||||
}
|
||||
}
|
||||
|
||||
// __END__
|
||||
Reference in New Issue
Block a user