CakePHP3のドキュメントを元にPHPUnitを使って単体を実施したら以下のメッセージが表示された。
Class ‘tests\TestCase\View\Helper\ProgressHelperTest’ could not be found in ‘tests\TestCase\View\Helper\ProgressHelperTest.php’.
原因
ドキュメントを参考にして書いていたので「<?php」を付け忘れていた。
付けたあとに実行すると正常にPHPUnitが終了した。
vendor\bin\phpunit tests\TestCase\View\Helper\ProgressHelperTest PHPUnit 5.7.27 by Sebastian Bergmann and contributors. . 1 / 1 (100%) Time: 256 ms, Memory: 6.00MB OK (1 test, 3 assertions)
バージョン
CakePHP 3.x
PHPUnit 5.7.27
コメント