mirror of
https://framagit.org/hubzilla/core.git
synced 2026-06-21 00:52:33 -04:00
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.
10 lines
188 B
PHP
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';
|