-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
122 lines (118 loc) · 7.49 KB
/
phpunit.xml.dist
File metadata and controls
122 lines (118 loc) · 7.49 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<?xml version="1.0" encoding="UTF-8"?>
<!-- https://phpunit.de/manual/current/en/appendixes.configuration.html -->
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/5.7/phpunit.xsd"
backupGlobals="false"
backupStaticAttributes="false"
bootstrap="app/autoload.php"
cacheTokens="true"
stopOnError="false"
stopOnFailure="false"
stopOnWarning="false"
stopOnIncomplete="false"
stopOnRisky="false"
stopOnSkipped="false"
failOnRisky="false"
failOnWarning="true"
beStrictAboutChangesToGlobalState="false"
beStrictAboutOutputDuringTests="false"
beStrictAboutResourceUsageDuringSmallTests="false"
beStrictAboutTestsThatDoNotTestAnything="false"
beStrictAboutTodoAnnotatedTests="false"
beStrictAboutCoversAnnotation="false"
checkForUnintentionallyCoveredCode="false"
enforceTimeLimit="false"
verbose="false">
<groups>
<exclude>
<group>soap</group>
<group>segfault</group>
<group>dist</group>
</exclude>
</groups>
<testsuites>
<testsuite name="unit">
<directory>vendor/oro/*/Tests/Unit</directory>
<directory>vendor/oro/*/*/Tests/Unit</directory>
<directory>vendor/oro/*/*/*/Tests/Unit</directory>
<directory>vendor/oro/*/*/*/*/Tests/Unit</directory>
<directory>vendor/oro/*/*/*/*/*/Tests/Unit</directory>
</testsuite>
<testsuite name="functional">
<directory suffix="Test.php">vendor/oro/platform*/src/*/Bundle/*Bundle/Tests/Functional</directory>
<directory suffix="Test.php">vendor/oro/platform*/src/*/Component/*/Tests/Functional</directory>
<directory suffix="Test.php">vendor/oro/calendar-bundle/Oro/Bundle/*Bundle/Tests/Functional</directory>
</testsuite>
<testsuite name="functional-1-of-4">
<directory suffix="Test.php">vendor/oro/platform/src/*/Bundle/A*Bundle/Tests/Functional</directory>
</testsuite>
<testsuite name="functional-2-of-4">
<directory suffix="Test.php">vendor/oro/platform/src/*/Bundle/D*Bundle/Tests/Functional</directory>
</testsuite>
<testsuite name="functional-3-of-4">
<directory suffix="Test.php">vendor/oro/platform/src/*/Bundle/B*Bundle/Tests/Functional</directory>
<directory suffix="Test.php">vendor/oro/platform/src/*/Bundle/C*Bundle/Tests/Functional</directory>
<directory suffix="Test.php">vendor/oro/platform/src/*/Bundle/E*Bundle/Tests/Functional</directory>
<directory suffix="Test.php">vendor/oro/platform/src/*/Bundle/F*Bundle/Tests/Functional</directory>
<directory suffix="Test.php">vendor/oro/platform/src/*/Bundle/G*Bundle/Tests/Functional</directory>
<directory suffix="Test.php">vendor/oro/platform/src/*/Bundle/H*Bundle/Tests/Functional</directory>
<directory suffix="Test.php">vendor/oro/platform/src/*/Bundle/I*Bundle/Tests/Functional</directory>
<directory suffix="Test.php">vendor/oro/platform/src/*/Bundle/J*Bundle/Tests/Functional</directory>
<directory suffix="Test.php">vendor/oro/platform/src/*/Bundle/K*Bundle/Tests/Functional</directory>
<directory suffix="Test.php">vendor/oro/platform/src/*/Bundle/L*Bundle/Tests/Functional</directory>
<directory suffix="Test.php">vendor/oro/platform/src/*/Bundle/M*Bundle/Tests/Functional</directory>
<directory suffix="Test.php">vendor/oro/platform/src/*/Bundle/N*Bundle/Tests/Functional</directory>
<directory suffix="Test.php">vendor/oro/platform/src/*/Bundle/O*Bundle/Tests/Functional</directory>
<directory suffix="Test.php">vendor/oro/platform/src/*/Bundle/P*Bundle/Tests/Functional</directory>
<directory suffix="Test.php">vendor/oro/platform/src/*/Bundle/Q*Bundle/Tests/Functional</directory>
<directory suffix="Test.php">vendor/oro/platform/src/*/Bundle/R*Bundle/Tests/Functional</directory>
</testsuite>
<testsuite name="functional-4-of-4">
<directory suffix="Test.php">vendor/oro/platform/src/*/Bundle/S*Bundle/Tests/Functional</directory>
<directory suffix="Test.php">vendor/oro/platform/src/*/Bundle/T*Bundle/Tests/Functional</directory>
<directory suffix="Test.php">vendor/oro/platform/src/*/Bundle/U*Bundle/Tests/Functional</directory>
<directory suffix="Test.php">vendor/oro/platform/src/*/Bundle/V*Bundle/Tests/Functional</directory>
<directory suffix="Test.php">vendor/oro/platform/src/*/Bundle/W*Bundle/Tests/Functional</directory>
<directory suffix="Test.php">vendor/oro/platform/src/*/Bundle/X*Bundle/Tests/Functional</directory>
<directory suffix="Test.php">vendor/oro/platform/src/*/Bundle/Y*Bundle/Tests/Functional</directory>
<directory suffix="Test.php">vendor/oro/platform/src/*/Bundle/Z*Bundle/Tests/Functional</directory>
<directory suffix="Test.php">vendor/oro/platform-*/src/*/Bundle/*Bundle/Tests/Functional</directory>
<directory suffix="Test.php">vendor/oro/*/src/*/Component/*/Tests/Functional</directory>
<directory suffix="Test.php">vendor/oro/calendar-bundle/Oro/Bundle/*Bundle/Tests/Functional</directory>
</testsuite>
<testsuite name="selenium">
<directory suffix="Test.php">vendor/oro/platform*/src/*/Bundle/*Bundle/Tests/Selenium</directory>
<directory suffix="Test.php">vendor/oro/platform*/src/*/Component/*/Tests/Selenium</directory>
<directory suffix="Test.php">vendor/oro/calendar-bundle/Oro/Bundle/*Bundle/Tests/Selenium</directory>
</testsuite>
</testsuites>
<listeners>
<listener class="JohnKary\PHPUnit\Listener\SpeedTrapListener"/>
<listener class="TestListener" file="vendor/oro/platform/src/Oro/Bundle/TestFrameworkBundle/Test/TestListener.php">
<arguments>
<string>app/logs</string>
</arguments>
</listener>
</listeners>
<php>
<server name="KERNEL_DIR" value="app/"/>
<const name="PHPUNIT_LOAD_LIMIT" value="1.2"/>
<const name="PHPUNIT_PAGE_LIMIT" value="0.5"/>
<const name="PHPUNIT_TESTSUITE_BROWSER_PATH_WINNT" value="C:\Dev\phantomjs-1.9.0-windows\phantomjs.exe"/>
<const name="PHPUNIT_TESTSUITE_BROWSER_PATH_LINUX" value="/usr/bin/phantomjs"/>
<const name="PHPUNIT_TESTSUITE" value="true"/>
<const name="PHPUNIT_TESTSUITE_EXTENSION_SELENIUM_HOST" value="127.0.0.1"/>
<const name="PHPUNIT_TESTSUITE_EXTENSION_SELENIUM_PORT" value="4444"/>
<const name="PHPUNIT_TESTSUITE_EXTENSION_SELENIUM2_BROWSER" value="phantomjs"/>
<const name="PHPUNIT_TESTSUITE_EXTENSION_SELENIUM_TESTS_URL" value="http://localhost.com"/>
<const name="PHPUNIT_TESTSUITE_EXTENSION_SELENIUM_TESTS_URL_COVERAGE" value="http://localhost.com/bundles/orotestframework/scripts/phpunit_coverage.php"/>
<const name="MAX_EXECUTION_TIME" value="240000"/>
<const name="TIME_OUT" value="5000"/>
<const name="viewportWIDTH" value="1900"/>
<const name="viewportHEIGHT" value="1080"/>
<const name="PHPUNIT_TESTSUITE_EXTENSION_SELENIUM_PATH_LOGS" value="app/log"/>
<const name="PHPUNIT_TESTSUITE_EXTENSION_SELENIUM_LOGIN" value="admin"/>
<const name="PHPUNIT_TESTSUITE_EXTENSION_SELENIUM_PASS" value="admin"/>
</php>
</phpunit>