forked from afrihost/BaseCommandBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.hardened.xml
More file actions
18 lines (18 loc) · 778 Bytes
/
phpunit.hardened.xml
File metadata and controls
18 lines (18 loc) · 778 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?xml version="1.0" encoding="UTF-8"?>
<!-- PHPUnit config for test suit for environments that have extensive security restrictions or hardening.
See test_hardened.sh and Tests/BaseCommand/BaseCommandHardenedContainerTest.php for more information -->
<phpunit
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="false"
colors="true"
processIsolation="false"
stopOnFailure="false"
backupGlobals="false"
bootstrap="vendor/autoload.php">
<testsuites>
<testsuite name="Afrihost BaseCommandBundle Hardened Environment Test Suite">
<file>./Tests/Command/BaseCommandHardenedContainerTest.php</file>
</testsuite>
</testsuites>
</phpunit>