forked from xinix-technology/norm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
23 lines (23 loc) · 815 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit colors="true">
<testsuites>
<testsuite name="All test suites">
<directory>./test</directory>
</testsuite>
<testsuite name="Adapter mongo">
<directory>./test/Norm/Test/Mongo</directory>
</testsuite>
<testsuite name="Adapter mysql">
<directory>./test/Norm/Test/Mysql</directory>
</testsuite>
<testsuite name="Adapter sqlite">
<directory>./test/Norm/Test/Sqlite</directory>
</testsuite>
<testsuite name="Adapter oracle">
<directory>./test/Norm/Test/Oracle</directory>
</testsuite>
<testsuite name="Adapter OCI">
<directory>./test/Norm/Test/OCI</directory>
</testsuite>
</testsuites>
</phpunit>