Courses

Testing in Laravel 12 For Beginners

Two More Tests with TDD

Summary of this lesson:
- Building features using TDD methodology
- Testing empty and populated product tables
- Creating database structure through failing tests
- Course conclusion and next steps

Let's continue our TDD journey. The next feature for the products list will be that the products page loads, and if there are no products, it shows an empty table with the text No products found. If there are products, they are shown in the table. Similar to what we have done already.


Empty Table Test

So, first, the test. Yes, before writing the feature code, remember.

tests/Feature/ProductsTest.php:

class ProductsTest extends TestCase
{
use RefreshDatabase;
 
// ...
 
public function test_homepage_contains_empty_table(): void
{
$user = User::factory()->create();
$response = $this->actingAs($user)->get('/products');
 
$response->assertStatus(200);
$response->assertSee(__('No products found'));
}
}

Now, let's run the test.

The GET request works, and it returns status 200. This part we made in the last lesson. Now, the error is that we don't see the message when the table is empty.

In the Controller, the index method...

The full lesson is only for Premium Members.
Want to access all 25 lessons of this course? (90 min read)

You also get:

  • 74 courses
  • Premium tutorials
  • Access to repositories
  • Private Discord