mirror of
https://github.com/OPSnet/Gazelle.git
synced 2026-01-16 18:04:34 -05:00
29 lines
894 B
XML
29 lines
894 B
XML
<?xml version="1.0"?>
|
|
<phpunit
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.3/phpunit.xsd"
|
|
bootstrap="phpunit-autoload.php"
|
|
cacheDirectory="../cache/phpunit"
|
|
>
|
|
<php>
|
|
<const name="IMAGE_CACHE_HOST" value="http://image.host" />
|
|
<const name="IMAGE_CACHE_SECRET" value="phpunit" />
|
|
<const name="LOGIN_SLEEP_USEC" value="100" />
|
|
</php>
|
|
<testsuites>
|
|
<testsuite name="unit">
|
|
<directory>../tests/phpunit</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<source>
|
|
<include>
|
|
<directory suffix=".php">../app</directory>
|
|
<directory suffix=".php">../classes</directory>
|
|
<directory suffix=".php">../lib</directory>
|
|
<directory suffix=".php">../public</directory>
|
|
<directory suffix=".php">../sections</directory>
|
|
</include>
|
|
<exclude/>
|
|
</source>
|
|
</phpunit>
|