
Introduced `phpunit.xml` for setting up our PHPUnit test suite with essential settings. Also added `bootstrap.php` to require necessary dependencies and import the `ConfigLib` library. This allows for a standardized testing environment and smoother test execution.
11 lines
311 B
XML
11 lines
311 B
XML
<phpunit bootstrap="bootstrap.php">
|
|
<testsuites>
|
|
<testsuite name="ConfigLib Test Suite">
|
|
<directory>tests</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<php>
|
|
<ini name="error_reporting" value="-1"/>
|
|
<server name="KERNEL_DIR" value="app/"/>
|
|
</php>
|
|
</phpunit>
|