Courses

Testing in Laravel 12 For Beginners

Pest Architecture Testing

Summary of this lesson:
- Using Pest architecture testing for code quality
- Checking for debugging functions in code
- Implementing architecture presets
- Setting up custom architecture rules

While debugging your Laravel application, you often use functions like dd(), dump(), etc. Architecture testing in Pest may help you scan the code before pushing to the repository, to ensure these functions don't exist anymore.

This is just one use-case. The architecture plugin allows you to check, for example, that only Enum files are in the specified folders.

Let's take a look at a practical example.

First, let's create a test.

php artisan make:test ArchTest

Let's check for debugging calls.

tests/Feature/ArchTest.php:

arch('No debugging calls are used')
->expect(['dd', 'dump'])
->not->toBeUsed();

If any debugging calls are left, we will...

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