From d490b9f4e3ebe7246f4b4b4afc56a418183ef353 Mon Sep 17 00:00:00 2001 From: jrfnl Date: Mon, 4 Mar 2024 08:13:17 +0100 Subject: [PATCH] Tests: allow for running locally via PHPUnit PHAR file --- phpunit-bootstrap.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/phpunit-bootstrap.php b/phpunit-bootstrap.php index 96e4cdf..8b70638 100644 --- a/phpunit-bootstrap.php +++ b/phpunit-bootstrap.php @@ -95,5 +95,8 @@ // Load test related autoloader. require_once __DIR__ . '/vendor/yoast/phpunit-polyfills/phpunitpolyfills-autoload.php'; +// Load IO testcase. +require_once __DIR__ . '/Tests/IOTestCase.php'; + // Clean up. unset($ds, $phpcsDir, $phpcsUtilsDir, $vendorDir);