forked from mongofill/mongofill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
28 lines (27 loc) · 972 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
bootstrap="tests/bootstrap.php"
colors="true"
backupGlobals="false"
>
<groups>
<include>
<!--
By default our tests assumes a standalone MongoDB 2.4.x instance running on port 27017
will be used. It will not run replset tests. Use list-groups to see all available
groups to fit your testing environment. The mongoxxx groups are only relevant for
the Integration Test Suite.
-->
<group>__nogroup__</group>
<group>mongo24x</group>
</include>
</groups>
<testsuites>
<testsuite name="unit">
<directory>./tests/Mongofill/Tests/Unit</directory>
</testsuite>
<testsuite name="integration">
<directory>./tests/Mongofill/Tests/Integration</directory>
</testsuite>
</testsuites>
</phpunit>