Files
core/tests/unit/bootstrap.php
Harald Eilertsen 2cd779cbe9 Don't autoload test cases using composer.
Introduces a bootstrap file that ensures that the base test case classes
are loaded and available instead.

This reduces the number of warnings when running composer install.
2024-09-24 13:54:42 +02:00

10 lines
188 B
PHP

<?php
/**
* Bootstrapping unit test framework
*
*/
require_once __dir__ . '/../../boot.php';
require_once __dir__ . '/UnitTestCase.php';
require_once __dir__ . '/Module/TestCase.php';