-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
32 lines (32 loc) · 1.26 KB
/
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
<!--suppress XmlUnboundNsPrefix -->
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/5.7/phpunit.xsd"
bootstrap="ut/bootstrap.php"
>
<testsuites>
<testsuite name="all">
<file>ut/SilexKernelTest.php</file>
<file>ut/SilexKernelWebTest.php</file>
<file>ut/FallbackViewHandlerTest.php</file>
</testsuite>
<testsuite name="exceptions">
<file>ut/HttpExceptionTest.php</file>
</testsuite>
<testsuite name="cors">
<file>ut/Cors/CrossOriginResourceSharingTest.php</file>
<file>ut/Cors/CrossOriginResourceSharingAdvancedTest.php</file>
</testsuite>
<testsuite name="security">
<file>ut/Security/SecurityServiceProviderTest.php</file>
<file>ut/Security/SecurityServiceProviderConfigurationTest.php</file>
</testsuite>
<testsuite name="twig">
<file>ut/Twig/TwigServiceProviderTest.php</file>
<file>ut/Twig/TwigServiceProviderConfigurationTest.php</file>
</testsuite>
<testsuite name="aws">
<file>ut/AwsTests/ElbTrustedProxyTest.php</file>
</testsuite>
</testsuites>
</phpunit>