Laravel Idea for PhpStorm - Full-featured IDE for productive artisans!

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.

Laravel Forge logo

Laravel Forge

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

Laravel Forge
Tinkerwell logo

Tinkerwell

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

Tinkerwell
No Compromises logo

No Compromises

Joel and Aaron, the two seasoned devs from the No Compromises podcast, are now available to hire for your Laravel project. ⬧ Flat rate of $7500/mo. ⬧ No lengthy sales process. ⬧ No contracts. ⬧ 100% money back guarantee.

No Compromises
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
Bacancy logo

Bacancy

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

Bacancy
Lucky Media logo

Lucky Media

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

Lucky Media
Lunar: Laravel E-Commerce logo

Lunar: Laravel E-Commerce

E-Commerce for Laravel. An open-source package that brings the power of modern headless e-commerce functionality to Laravel.

Lunar: Laravel E-Commerce
LaraJobs logo

LaraJobs

The official Laravel job board

LaraJobs
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
Supercharge Your SaaS Development with FilamentFlow: The Ultimate Laravel Filament Boilerplate logo

Supercharge Your SaaS Development with FilamentFlow: The Ultimate Laravel Filament Boilerplate

Build your SaaS application in hours. Out-of-the-box multi-tenancy and seamless Stripe integration. Supports subscriptions and one-time purchases, allowing you to focus on building and creating without repetitive setup tasks.

Supercharge Your SaaS Development with FilamentFlow: The Ultimate Laravel Filament Boilerplate
Rector logo

Rector

Your partner for seamless Laravel upgrades, cutting costs, and accelerating innovation for successful companies

Rector
MongoDB logo

MongoDB

Enhance your PHP applications with the powerful integration of MongoDB and Laravel, empowering developers to build applications with ease and efficiency. Support transactional, search, analytics and mobile use cases while using the familiar Eloquent APIs. Discover how MongoDB's flexible, modern database can transform your Laravel applications.

MongoDB

The latest

View all →
Laravel performance monitoring in Honeybadger image

Laravel performance monitoring in Honeybadger

Read article
Check Env Variables Across All .env Files image

Check Env Variables Across All .env Files

Read article
Laracon AU with Michael Dyrynda image

Laracon AU with Michael Dyrynda

Read article
Cancel a Specific Batch of Queued Jobs With This Laravel Package image

Cancel a Specific Batch of Queued Jobs With This Laravel Package

Read article
Always Render API Exceptions as JSON in Laravel image

Always Render API Exceptions as JSON in Laravel

Read article
Laravel 11.28 Adds a Composer Dev Command image

Laravel 11.28 Adds a Composer Dev Command

Read article