-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
52 lines (46 loc) · 1.82 KB
/
Copy pathphpunit.xml
File metadata and controls
52 lines (46 loc) · 1.82 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd"
bootstrap="tests/bootstrap.php"
colors="true"
beStrictAboutTestsThatDoNotTestAnything="false"
processIsolation="false"
displayDetailsOnTestsThatTriggerDeprecations="true"
stopOnFailure="false">
<testsuites>
<testsuite name="TestCase">
<directory>tests/TestCase</directory>
<exclude>tests/TestCase/Integration</exclude>
</testsuite>
</testsuites>
<source ignoreSuppressionOfDeprecations="true">
<include>
<directory>src</directory>
</include>
</source>
<!--
To enable the Temporal PHPUnit extension, uncomment the <extensions> section below
and add the TEMPORAL_CONFIG environment variable. This will start Temporal server
and worker once per test suite instead of per test case.
Option 1: Use extension (uncomment below)
Option 2: Use traits (keep extensions commented, tests will use WithTemporalTrait)
-->
<!--
<extensions>
<bootstrap class="Crustum\Temporal\TestSuite\Extension\TemporalExtension">
<parameter name="time_skipping" value="false"/>
<parameter name="debug" value="true"/>
<parameter name="start_server" value="true"/>
</bootstrap>
</extensions>
-->
<php>
<env name="APP_ENV" value="testing"/>
<!-- Uncomment to use extension: -->
<!-- <env name="TEMPORAL_CONFIG" value="../../config/temporal.php"/> -->
</php>
<logging>
<testdoxHtml outputFile="coverage/testdox.html"/>
<testdoxText outputFile="coverage/testdox.txt"/>
</logging>
</phpunit>