Skip to content

Commit

Permalink
Introducción al testing para módulos
Browse files Browse the repository at this point in the history
  • Loading branch information
FazeElian committed Dec 17, 2023
1 parent 0937ff4 commit 6c97184
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions app/Models/DetailFacture.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
namespace App;

use Illuminate\Database\Eloquent\Model;
use App\Models\Product;

/**
* Class DetailFacture
Expand Down
5 changes: 5 additions & 0 deletions tests/Feature/ExampleTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}

0 comments on commit 6c97184

Please sign in to comment.