Testing in Laravel: An Introduction

29 May 2025

Testing in Laravel: An Introduction

Laravel is built with testing in mind. In fact, support for testing with PHPUnit is included out of the box and a `phpunit.xml` file is already set up for your application. The framework also ships with convenient helper methods that allow you to expressively test your applications.

We will cover unit tests and feature tests.

;