migrate to pest php for testing
This commit is contained in:
parent
2273c91f2b
commit
1a6be07ccd
19 changed files with 1650 additions and 567 deletions
|
@ -5,9 +5,13 @@ namespace App\Tests\Entity;
|
|||
use App\Entity\FoodOrder;
|
||||
use App\Entity\FoodVendor;
|
||||
use App\Entity\MenuItem;
|
||||
use PHPUnit\Framework\Attributes\CoversClass;
|
||||
use PHPUnit\Framework\TestCase;
|
||||
use Symfony\Component\Uid\Ulid;
|
||||
|
||||
#[CoversClass(FoodVendor::class)]
|
||||
#[CoversClass(FoodOrder::class)]
|
||||
#[CoversClass(MenuItem::class)]
|
||||
final class FoodVendorTest extends TestCase
|
||||
{
|
||||
public function testFoodVendor(): void
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue