forked from Automattic/jetpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
80 lines (80 loc) · 3.09 KB
/
phpunit.xml.dist
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<phpunit bootstrap="tests/php/bootstrap.php" backupGlobals="false" colors="true">
<php>
<const name="PHPUNIT_JETPACK_TESTSUITE" value="true"/>
</php>
<testsuites>
<testsuite name="general">
<file>tests/php/test_class.jetpack.php</file>
<file>tests/php/test_class.functions.compat.php</file>
<file>tests/php/test_class.jetpack-network.php</file>
<file>tests/php/test_class.jetpack-client-server.php</file>
<file>tests/php/test_class.jetpack-xmlrpc-server.php</file>
<file>tests/php/test_class.jetpack-heartbeat.php</file>
<file>tests/php/test_class.jetpack-constants.php</file>
</testsuite>
<testsuite name="core-api">
<directory phpVersion="5.6.0" phpVersionOperator=">=" prefix="test_" suffix=".php">tests/php/core-api</directory>
</testsuite>
<testsuite name="media">
<file>tests/php/test_class.jetpack-media-extractor.php</file>
<file>tests/php/test_class.jetpack-media-summary.php</file>
<file>tests/php/test_class.jetpack-post-images.php</file>
</testsuite>
<testsuite name="photon">
<file>tests/php/test_class.jetpack_photon.php</file>
<file>tests/php/test_functions.photon.php</file>
<directory prefix="test_" suffix=".php">tests/php/modules/photon</directory>
<file>tests/php/test_class.functions.opengraph.php</file>
</testsuite>
<testsuite name="json-api">
<file>tests/php/test_class.json-api-jetpack-endpoints.php</file>
</testsuite>
<testsuite name="contact-form">
<directory prefix="test_" suffix=".php">tests/php/modules/contact-form</directory>
</testsuite>
<testsuite name="infinite-scroll">
<directory prefix="test_" suffix=".php">tests/php/modules/infinite-scroll</directory>
</testsuite>
<testsuite name="publicize">
<directory prefix="test_" suffix=".php">tests/php/modules/publicize</directory>
</testsuite>
<testsuite name="sharedaddy">
<directory prefix="test_" suffix=".php">tests/php/modules/sharedaddy</directory>
</testsuite>
<testsuite name="shortcodes">
<directory prefix="test_" suffix=".php">tests/php/modules/shortcodes</directory>
</testsuite>
<testsuite name="after-the-deadline">
<file>tests/php/modules/test_class.after_the_deadline.php</file>
</testsuite>
<testsuite name="widgets">
<directory prefix="test_" suffix=".php">tests/php/modules/widgets</directory>
</testsuite>
<testsuite name="sso">
<directory prefix="test_" suffix=".php">tests/php/modules/sso</directory>
</testsuite>
<testsuite name="subscriptions">
<directory prefix="test_" suffix=".php">tests/php/modules/subscriptions</directory>
</testsuite>
<testsuite name="sync">
<directory prefix="test_" suffix=".php">tests/php/sync</directory>
</testsuite>
<testsuite name="uninstall">
<directory prefix="test_" suffix=".php">tests/php/uninstall</directory>
</testsuite>
</testsuites>
<groups>
<exclude>
<group>external-http</group>
<group>uninstall</group>
</exclude>
</groups>
<filter>
<whitelist processUncoveredFilesFromWhitelist="false">
<directory suffix=".php">.</directory>
<exclude>
<directory suffix=".php">tests</directory>
</exclude>
</whitelist>
</filter>
</phpunit>