Skip to content

Commit a1db359

Browse files
committed
refactor: update ComposerJsonTest to include missing class usages
Signed-off-by: Felipe Sayão Lobato Abreu <github@mentordosnerds.com>
1 parent 15a248a commit a1db359

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

tests/Composer/Json/ComposerJsonTest.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,14 @@
2121

2222
use DateTimeImmutable;
2323
use FastForward\DevTools\Composer\Json\ComposerJson;
24+
use FastForward\DevTools\Composer\Json\Schema\Author;
2425
use FastForward\DevTools\Composer\Json\Schema\AuthorInterface;
2526
use FastForward\DevTools\Composer\Json\Schema\Funding;
27+
use FastForward\DevTools\Composer\Json\Schema\Support;
2628
use FastForward\DevTools\Composer\Json\Schema\SupportInterface;
2729
use PHPUnit\Framework\Attributes\CoversClass;
2830
use PHPUnit\Framework\Attributes\Test;
31+
use PHPUnit\Framework\Attributes\UsesClass;
2932
use PHPUnit\Framework\TestCase;
3033
use UnderflowException;
3134

@@ -35,6 +38,9 @@
3538
use function Safe\unlink;
3639

3740
#[CoversClass(ComposerJson::class)]
41+
#[UsesClass(Author::class)]
42+
#[UsesClass(Funding::class)]
43+
#[UsesClass(Support::class)]
3844
final class ComposerJsonTest extends TestCase
3945
{
4046
/**

0 commit comments

Comments
 (0)