forked from CONTENIDO/CONTENIDO
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
38 lines (29 loc) · 1.03 KB
/
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
29
30
31
32
33
34
35
36
37
38
<phpunit bootstrap="test/bootstrap.php" backupGlobals="false" colors="true">
<testsuites>
<testsuite name="all">
<directory>test/chains</directory>
<directory>test/contenido</directory>
</testsuite>
<testsuite name="chains">
<directory>test/chains</directory>
</testsuite>
<testsuite name="contenido">
<directory>test/contenido</directory>
</testsuite>
<testsuite name="classes">
<directory>test/contenido/classes</directory>
</testsuite>
<testsuite name="genericdb">
<directory>test/contenido/genericdb</directory>
</testsuite>
<testsuite name="html">
<directory>test/contenido/html</directory>
</testsuite>
<testsuite name="uri">
<directory>test/contenido/uri</directory>
</testsuite>
<testsuite name="validator">
<directory>test/contenido/validator</directory>
</testsuite>
</testsuites>
</phpunit>