Courses

Testing in Laravel 12 For Beginners

TDD Approach: Simple Example

Summary of this lesson:
- Understanding Test-Driven Development principles
- Comparing traditional testing vs TDD approach
- Implementing first TDD example with authentication
- Following red-green-refactor cycle

Until now, we have been writing tests on top of existing Laravel code. We haven't touched a different (opposite) approach called TDD, Test Driven Development. So let's briefly cover it in this final section of the course.


The TDD Approach

In general, the difference is in mindset and in thinking, and in the order of how you do things.

Until now, we have been working in this order:

  • Write the feature code
  • Write the test for features
  • Launch the tests
  • If they fail, fix the feature code and relaunch tests

TDD approach is the opposite:

  • You write tests first
  • Then they fail (intentionally)
  • And then you write the code for features, fixing the test errors
  • Launch the tests again
  • They fail with different errors
  • You write more code for features
  • ... Repeat until the tests succeed

For the example, we will write a couple of the same tests we did already for a product CRUD, but with a TDD approach.


The Practical Example

So, we have a fresh Laravel project. The first feature we will work on is a products list, which...

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

You also get:

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