diff --git a/app/Models/DetailFacture.php b/app/Models/DetailFacture.php index 4707681..0231867 100644 --- a/app/Models/DetailFacture.php +++ b/app/Models/DetailFacture.php @@ -3,6 +3,7 @@ namespace App; use Illuminate\Database\Eloquent\Model; +use App\Models\Product; /** * Class DetailFacture diff --git a/tests/Feature/ExampleTest.php b/tests/Feature/ExampleTest.php index 8364a84..0914ede 100644 --- a/tests/Feature/ExampleTest.php +++ b/tests/Feature/ExampleTest.php @@ -16,4 +16,9 @@ public function test_the_application_returns_a_successful_response(): void $response->assertStatus(200); } + + public function test_basic_test(): void + { + $this->assertTrue(true); + } }