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

phpunit.xml - github.com/undo-ransomware/ransomware_detection.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cb70152afbf8d6f7adad8a95779308e8476fa13e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<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>
	<logging>
		<!-- and this is where your report will be written -->
		<log type="coverage-clover" target="./tests/clover.xml"/>
	</logging>
</phpunit>