12345678910111213141516171819 |
- <?php
- namespace Tests\Feature\API;
- use App\Models\Plan;
- use Tests\Feature\TestCase;
- class PlanTest extends TestCase
- {
- public function test_create_plan(): void
- {
- $form = Plan::factory()->make();
- $response = $this->post(route('plan.store'), $form->toArray());
- $response->assertStatus(201);
- }
- }
|