-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathphpunit-integration.xml
More file actions
24 lines (22 loc) · 995 Bytes
/
Copy pathphpunit-integration.xml
File metadata and controls
24 lines (22 loc) · 995 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.4/phpunit.xsd"
bootstrap="tests/integration/bootstrap-e2e.php"
processIsolation="false"
cacheResult="false"
colors="true"
defaultTestSuite="integration"
>
<testsuites>
<testsuite name="integration">
<directory>tests/integration/src/Tests</directory>
</testsuite>
</testsuites>
<!--
End-to-end tests against a real, disposable Joomla site over real HTTP. They need a
provisioned stack; see tests/integration/README.md for how to bring one up.
Nothing here boots Joomla inside the PHPUnit process — the suite observes the site from
outside, over HTTP and over PDO, exactly as a browser or an attacker would. None of the
strict-mode settings the unit suite uses therefore apply.
-->
</phpunit>