4,000 emails/month for free | Mailtrap sends real emails now!

Getting Started With Parallel Testing and Code Coverage in Laravel

Published on by

Getting Started With Parallel Testing and Code Coverage in Laravel image

Let's quickly walk through the setup to get started on Parallel testing and setting up code coverage reports to analyze how much of our code is tested.

I personally dig HTML reports via XDebug, as I love to visualize coverage line-by-line while working on a feature:

I'll show you how to set up HTML reports quickly in this tutorial as well and set up Parallel testing on a new project.

The setup

Parallel testing has been officially supported in Laravel with Artisan since Laravel v8.25. Let's walk through setting up Parallel testing and coverage reports by setting up a new Laravel project and walking through the process of installing Paratest and configuring our reports.

Running tests in parallel in a new project isn't going to help speed up our test runs; however, as your tests grow, you'll notice performance increases.

First, create a fresh Laravel app, and we'll version control it so we can see changes along the way as we work on the setup.

laravel new parallel-demo --git

The laravel command creates our project and commits the code, so we get a clean install and a single commit.

To use Laravel's --parallel flag in PHPUnit, we must install ParaTest. Laravel makes this easy, prompting us to do so when we run tests for the first time:

php artisan test --parallel
 
Running tests in parallel requires "brianium/paratest". Do you wish to install it as a dev dependency? (yes/no) [no]:
> yes
Using version ^6.6 for brianium/paratest
./composer.json has been updated
# ...
ParaTest v6.6.4 upon PHPUnit 9.5.25 #StandWithUkraine
 
.. 2 / 2 (100%)
 
Time: 00:00.300, Memory: 22.00 MB
 
OK (2 tests, 2 assertions)

Paratest is now installed properly and we can move on to running tests with coverage and configuring HTML reports.

Coverage reports

Another helpful test flag is --coverage, which outputs a beautiful text-based version to the terminal:

php artisan test --parallel --coverage
 
ERROR Code coverage driver not available. Did you set Xdebug's coverage mode?

Depending on your local PHP setup, you may get the above error message, prompting you to set Xdebug's coverage mode. We won't get into the details of setting up code coverage tools, but a few options are available. I don't mind using Xdebug 3's coverage as I often use Xdebug for debugging in development.

To get coverage working, you need to see Xdebug mode to coverage:

XDEBUG_MODE=coverage php artisan test --parallel --coverage

After running the above command, you should see something similar for your coverage reports:

HTML coverage reports

While text-based coverage is helpful, I like using HTML coverage reports to visualize lines of code that are covered and not covered. They are highlighted in green and red:

The above code is an example from a default Laravel install, and I'll let you decide if you want to test/cover the code that ships with Laravel. I am of the opinion that I prefer to ignore the initially generated files and only focus on the code I add to the application.

Adding HTML reports is rather simple. Open the phpunit.xml file, find the <coverage/> and add the <report/> tag:

<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">./app</directory>
</include>
<report>
<html outputDirectory="tests/Coverage/html"/>
</report>
</coverage>

You can put the coverage wherever you want, but you'll probably want to ignore the generated files from version control. Perhaps you could use a coverage/ folder in the project's root, put it somewhere in storage, or embed it in the tests/ folder like above. The choice is up to you!

Using the above path example, add the following to your .gitignore file:

# ...
tests/Coverage/

When you run your tests with coverage, it will generate an HTML report. You can then open the tests/Coverage/html/index.html file in a browser to view the report.

With that, you should have a nice setup for running tests in parallel and configuring HTML reports for easy visualization of coverage in development!

While we set up parallel testing and coverage reports, we could improve the coverage reports by ignoring files that ship with a default Laravel installation.

Paul Redmond photo

Staff writer at Laravel News. Full stack web developer and author.

Cube

Laravel Newsletter

Join 40k+ other developers and never miss out on new tips, tutorials, and more.

image
Tinkerwell

Enjoy coding and debugging in an editor designed for fast feedback and quick iterations. It's like a shell for your application – but with multi-line editing, code completion, and more.

Visit Tinkerwell
Curotec logo

Curotec

World class Laravel experts with GenAI dev skills. LATAM-based, embedded engineers that ship fast, communicate clearly, and elevate your product. No bloat, no BS.

Curotec
Bacancy logo

Bacancy

Supercharge your project with a seasoned Laravel developer with 4-6 years of experience for just $3200/month. Get 160 hours of dedicated expertise & a risk-free 15-day trial. Schedule a call now!

Bacancy
Tinkerwell logo

Tinkerwell

The must-have code runner for Laravel developers. Tinker with AI, autocompletion and instant feedback on local and production environments.

Tinkerwell
Get expert guidance in a few days with a Laravel code review logo

Get expert guidance in a few days with a Laravel code review

Expert code review! Get clear, practical feedback from two Laravel devs with 10+ years of experience helping teams build better apps.

Get expert guidance in a few days with a Laravel code review
PhpStorm logo

PhpStorm

The go-to PHP IDE with extensive out-of-the-box support for Laravel and its ecosystem.

PhpStorm
Laravel Cloud logo

Laravel Cloud

Easily create and manage your servers and deploy your Laravel applications in seconds.

Laravel Cloud
Kirschbaum logo

Kirschbaum

Providing innovation and stability to ensure your web application succeeds.

Kirschbaum
Shift logo

Shift

Running an old Laravel version? Instant, automated Laravel upgrades and code modernization to keep your applications fresh.

Shift
Harpoon: Next generation time tracking and invoicing logo

Harpoon: Next generation time tracking and invoicing

The next generation time-tracking and billing software that helps your agency plan and forecast a profitable future.

Harpoon: Next generation time tracking and invoicing
Lucky Media logo

Lucky Media

Get Lucky Now - the ideal choice for Laravel Development, with over a decade of experience!

Lucky Media
SaaSykit: Laravel SaaS Starter Kit logo

SaaSykit: Laravel SaaS Starter Kit

SaaSykit is a Multi-tenant Laravel SaaS Starter Kit that comes with all features required to run a modern SaaS. Payments, Beautiful Checkout, Admin Panel, User dashboard, Auth, Ready Components, Stats, Blog, Docs and more.

SaaSykit: Laravel SaaS Starter Kit

The latest

View all →
Clawdbot Rebrands to Moltbot After Trademark Request From Anthropic image

Clawdbot Rebrands to Moltbot After Trademark Request From Anthropic

Read article
Automate Laravel Herd Worktrees with This Claude Code Skill image

Automate Laravel Herd Worktrees with This Claude Code Skill

Read article
Laravel Boost v2.0 Released with Skills Support image

Laravel Boost v2.0 Released with Skills Support

Read article
Laravel Debugbar v4.0.0 is released image

Laravel Debugbar v4.0.0 is released

Read article
Radiance: Generate Deterministic Mesh Gradient Avatars in PHP image

Radiance: Generate Deterministic Mesh Gradient Avatars in PHP

Read article
Speeding Up Laravel News With Cloudflare image

Speeding Up Laravel News With Cloudflare

Read article