Introduce a tests bootstrap file

This commit is contained in:
Yassine Guedidi 2024-01-07 22:12:29 +01:00
parent beb3da80d2
commit 18b09979d6
2 changed files with 4 additions and 1 deletions

View file

@ -4,7 +4,7 @@
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.8/phpunit.xsd"
backupGlobals="false"
colors="true"
bootstrap="vendor/autoload.php"
bootstrap="tests/bootstrap.php"
>
<testsuites>

3
tests/bootstrap.php Normal file
View file

@ -0,0 +1,3 @@
<?php
require __DIR__ . '/../vendor/autoload.php';