
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.
3 lines
61 B
PHP
3 lines
61 B
PHP
<?php
|
|
require 'ncc';
|
|
import('net.nosial.configlib');
|