PlanTest.php 334 B

12345678910111213141516171819
  1. <?php
  2. namespace Tests\Feature\API;
  3. use App\Models\Plan;
  4. use Tests\Feature\TestCase;
  5. class PlanTest extends TestCase
  6. {
  7. public function test_create_plan(): void
  8. {
  9. $form = Plan::factory()->make();
  10. $response = $this->post(route('plan.store'), $form->toArray());
  11. $response->assertStatus(201);
  12. }
  13. }