-
Notifications
You must be signed in to change notification settings - Fork 1
/
phpunit.xml
executable file
·28 lines (24 loc) · 999 Bytes
/
phpunit.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?xml version="1.0" encoding="utf-8"?>
<phpunit colors="true"
backupGlobals="false"
bootstrap="./tests/init.php">
<testsuites>
<testsuite name="Inventory test suite">
<directory>./tests/Mapping</directory>
<directory>./tests/Core</directory>
<directory>./tests/User</directory>
<directory>./tests/Calc</directory>
<directory>./tests/TEC</directory>
<directory>./tests/Exec</directory>
<directory>./tests/Classification</directory>
<directory>./tests/Export</directory>
<directory>./tests/Parameter</directory>
<directory>./tests/Algo</directory>
<directory>./tests/AF</directory>
<directory>./tests/Social</directory>
<directory>./tests/Orga</directory>
<directory>./tests/AuditTrail</directory>
<directory>./tests/Account</directory>
</testsuite>
</testsuites>
</phpunit>