migrate to pest php for testing

This commit is contained in:
lubiana 2025-02-01 00:09:50 +01:00
parent 2273c91f2b
commit 1a6be07ccd
Signed by: lubiana
SSH key fingerprint: SHA256:vW1EA0fRR3Fw+dD/sM0K+x3Il2gSry6YRYHqOeQwrfk
19 changed files with 1650 additions and 567 deletions

View file

@ -4,8 +4,11 @@ namespace App\Tests\Entity;
use App\Entity\FoodOrder;
use App\Entity\OrderItem;
use PHPUnit\Framework\Attributes\CoversClass;
use PHPUnit\Framework\TestCase;
#[CoversClass(FoodOrder::class)]
#[CoversClass(OrderItem::class)]
final class FoodOrderTest extends TestCase
{
public function testFoodOrder(): void