Welcome to mirror list, hosted at ThFree Co, Russian Federation.

phpunit.xml - github.com/nextcloud/ransomware_detection.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 63e444d02a1b57b95bf7d1b5a8f032bc5b7f6dc8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<phpunit bootstrap="tests/bootstrap.php" colors="true">
    <testsuites>
        <testsuite name="unit">
            <directory>./tests/Unit</directory>
        </testsuite>
    </testsuites>
    <!-- filters for code coverage -->
	<filter>
		<whitelist processUncoveredFilesFromWhitelist="true">
			<directory suffix=".php">./lib/</directory>
		</whitelist>
	</filter>
</phpunit>