-
Notifications
You must be signed in to change notification settings - Fork 1
/
phpunit.xml
executable file
·35 lines (35 loc) · 1001 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
29
30
31
32
33
34
35
<phpunit bootstrap="test/bootstrap.php" stopOnError="true" stopOnFailure="true" debug="true">
<php>
</php>
<testsuites name="tools">
<directory>test/unit/</directory>
<testsuite name="apk-parser">
<file>parser/ApkParserTest.php</file>
<file>parser/ApkParserTest_string.php</file>
</testsuite>
<testsuite name="utils">
<file>UtilsTest.php</file>
</testsuite>
</testsuites>
<testsuites name="base">
<directory>test/unit/</directory>
<testsuite name="Model">
<file>ModelTest.php</file>
</testsuite>
<testsuite name="Collection">
<file>CollectionTest.php</file>
</testsuite>
</testsuites>
<testsuites>
<directory>test/unit/</directory>
<testsuite name="mail">
<file>MailerTest.php</file>
<file>BaobeiMailerTest.php</file>
</testsuite>
</testsuites>
<testsuites>
<testsuite name="daily">
<file>test/unit/daily/DailyStatTest.class.php</file>
</testsuite>
</testsuites>
</phpunit>