forked from serlo/athene2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
19 lines (18 loc) · 728 Bytes
/
phpunit.xml
File metadata and controls
19 lines (18 loc) · 728 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="./src/test/AtheneTest/Bootstrap.php" colors="true">
<testsuites>
<testsuite name="ClassResolver Test Suite">
<directory>./src/module/ClassResolver/test</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./src/module</directory>
<exclude>
<directory suffix="config.php">./src/module</directory>
<directory suffix="Module.php">./src/module</directory>
<directory suffix="Test.php">./src/module</directory>
</exclude>
</whitelist>
</filter>
</phpunit>