mirror of
https://github.com/chenasraf/nextcloud-forum.git
synced 2026-05-17 17:28:02 +00:00
22 lines
716 B
XML
22 lines
716 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
bootstrap="bootstrap.php"
|
|
timeoutForSmallTests="900"
|
|
timeoutForMediumTests="900"
|
|
timeoutForLargeTests="900"
|
|
cacheDirectory=".phpunit.cache"
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
|
|
colors="true">
|
|
<testsuites>
|
|
<testsuite name="Forum Integration Tests">
|
|
<directory suffix="Test.php">integration</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<source>
|
|
<include>
|
|
<directory suffix=".php">../appinfo</directory>
|
|
<directory suffix=".php">../lib</directory>
|
|
</include>
|
|
</source>
|
|
</phpunit>
|