Files
CoreLibs-Composer-All/test/phpunit/CoreLibsOutputProgressbarTest.php
Clemens Schwaighofer 6f653c24a0 VarSetType rename to SetVarType, add phan/phpstan/phpunit tests
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)
2023-02-22 07:52:51 +09:00

34 lines
723 B
PHP

<?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__