PHPUnit 関数のテストができない。
解決したいこと
PHPUnitを用いて自作関数のテストを行いたいです。
発生している問題・エラー
./vendor/bin/phpunit
を実行すると、関数が定義されていないというエラーが出てきます。
$ ./vendor/bin/phpunit
PHPUnit 9.5.21 #StandWithUkraine
E 1 / 1 (100%)
Time: 00:00.005, Memory: 6.00 MB
There was 1 error:
1) Tests\FlatTest::testFlat
Error: Call to undefined function Functions\flat()
/var/www/html/tests/FlatTest.php:16
ERRORS!
Tests: 1, Assertions: 0, Errors: 1.
該当するソースコード
src/Flat.php
<?php
declare(strict_types=1);
namespace Functions;
function flat(array $array, int $depth = 0)
{
// 内容は省略
}
tests/FlatTest.php
<?php
declare(strict_types=1);
namespace Tests;
use function Functions\flat;
use PHPUnit\Framework\TestCase;
class FlatTest extends TestCase
{
public function testFlat(): void
{
$input = [1, 2, 3, 4, 5];
$expected = [1, 2, 3, 4, 5];
$actual = flat($input);
$this->assertSame($expected, $actual);
}
}
バージョン
PHP 8.1
PHPUnit 9.5.21
0