-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
104 lines (102 loc) · 6.18 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
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.1/phpunit.xsd"
bootstrap="vendor/autoload.php"
cacheDirectory=".phpunit.cache"
executionOrder="depends,defects"
beStrictAboutOutputDuringTests="true"
failOnRisky="true"
failOnWarning="true"
defaultTestSuite="default">
<php>
<ini name="memory_limit" value="512M"/>
</php>
<testsuites>
<testsuite name="all">
<directory>tests</directory>
</testsuite>
<testsuite name="default">
<file>tests/src/SpecTestsuites/Core/AddressTest.php</file>
<file>tests/src/SpecTestsuites/Core/BinaryLeb128Test.php</file>
<file>tests/src/SpecTestsuites/Core/BinaryTest.php</file>
<file>tests/src/SpecTestsuites/Core/BlockTest.php</file>
<file>tests/src/SpecTestsuites/Core/BrIfTest.php</file>
<file>tests/src/SpecTestsuites/Core/BrTableTest.php</file>
<file>tests/src/SpecTestsuites/Core/BrTest.php</file>
<file>tests/src/SpecTestsuites/Core/BulkTest.php</file>
<file>tests/src/SpecTestsuites/Core/CallIndirectTest.php</file>
<file>tests/src/SpecTestsuites/Core/CallTest.php</file>
<file>tests/src/SpecTestsuites/Core/ConstTest.php</file>
<file>tests/src/SpecTestsuites/Core/DataTest.php</file>
<file>tests/src/SpecTestsuites/Core/ElemTest.php</file>
<file>tests/src/SpecTestsuites/Core/EndiannessTest.php</file>
<file>tests/src/SpecTestsuites/Core/ExportsTest.php</file>
<file>tests/src/SpecTestsuites/Core/F32BitwiseTest.php</file>
<file>tests/src/SpecTestsuites/Core/F32CmpTest.php</file>
<file>tests/src/SpecTestsuites/Core/F32Test.php</file>
<file>tests/src/SpecTestsuites/Core/F64BitwiseTest.php</file>
<file>tests/src/SpecTestsuites/Core/F64CmpTest.php</file>
<file>tests/src/SpecTestsuites/Core/F64Test.php</file>
<file>tests/src/SpecTestsuites/Core/FacTest.php</file>
<file>tests/src/SpecTestsuites/Core/ForwardTest.php</file>
<file>tests/src/SpecTestsuites/Core/FuncPtrsTest.php</file>
<file>tests/src/SpecTestsuites/Core/FuncTest.php</file>
<file>tests/src/SpecTestsuites/Core/GlobalTest.php</file>
<file>tests/src/SpecTestsuites/Core/I32Test.php</file>
<file>tests/src/SpecTestsuites/Core/I64Test.php</file>
<file>tests/src/SpecTestsuites/Core/IfTest.php</file>
<file>tests/src/SpecTestsuites/Core/InlineModuleTest.php</file>
<file>tests/src/SpecTestsuites/Core/IntExprsTest.php</file>
<file>tests/src/SpecTestsuites/Core/IntLiteralsTest.php</file>
<file>tests/src/SpecTestsuites/Core/LabelsTest.php</file>
<file>tests/src/SpecTestsuites/Core/LeftToRightTest.php</file>
<file>tests/src/SpecTestsuites/Core/LoadTest.php</file>
<file>tests/src/SpecTestsuites/Core/LocalGetTest.php</file>
<file>tests/src/SpecTestsuites/Core/LocalSetTest.php</file>
<file>tests/src/SpecTestsuites/Core/LocalTeeTest.php</file>
<file>tests/src/SpecTestsuites/Core/LoopTest.php</file>
<file>tests/src/SpecTestsuites/Core/MemoryCopyTest.php</file>
<file>tests/src/SpecTestsuites/Core/MemoryFillTest.php</file>
<file>tests/src/SpecTestsuites/Core/MemoryGrowTest.php</file>
<file>tests/src/SpecTestsuites/Core/MemoryInitTest.php</file>
<file>tests/src/SpecTestsuites/Core/MemoryRedundancyTest.php</file>
<file>tests/src/SpecTestsuites/Core/MemorySizeTest.php</file>
<file>tests/src/SpecTestsuites/Core/MemoryTest.php</file>
<file>tests/src/SpecTestsuites/Core/MemoryTrapTest.php</file>
<file>tests/src/SpecTestsuites/Core/NamesTest.php</file>
<file>tests/src/SpecTestsuites/Core/NopTest.php</file>
<file>tests/src/SpecTestsuites/Core/ObsoleteKeywordsTest.php</file>
<file>tests/src/SpecTestsuites/Core/RefFuncTest.php</file>
<file>tests/src/SpecTestsuites/Core/RefIsNullTest.php</file>
<file>tests/src/SpecTestsuites/Core/RefNullTest.php</file>
<file>tests/src/SpecTestsuites/Core/ReturnTest.php</file>
<file>tests/src/SpecTestsuites/Core/SelectTest.php</file>
<file>tests/src/SpecTestsuites/Core/StackTest.php</file>
<file>tests/src/SpecTestsuites/Core/StartTest.php</file>
<file>tests/src/SpecTestsuites/Core/StoreTest.php</file>
<file>tests/src/SpecTestsuites/Core/SwitchTest.php</file>
<file>tests/src/SpecTestsuites/Core/TableCopyTest.php</file>
<file>tests/src/SpecTestsuites/Core/TableFillTest.php</file>
<file>tests/src/SpecTestsuites/Core/TableGetTest.php</file>
<file>tests/src/SpecTestsuites/Core/TableGrowTest.php</file>
<file>tests/src/SpecTestsuites/Core/TableInitTest.php</file>
<file>tests/src/SpecTestsuites/Core/TableSetTest.php</file>
<file>tests/src/SpecTestsuites/Core/TableSizeTest.php</file>
<file>tests/src/SpecTestsuites/Core/TableSubTest.php</file>
<file>tests/src/SpecTestsuites/Core/TableTest.php</file>
<file>tests/src/SpecTestsuites/Core/TokenTest.php</file>
<file>tests/src/SpecTestsuites/Core/TrapsTest.php</file>
<file>tests/src/SpecTestsuites/Core/TypeTest.php</file>
<file>tests/src/SpecTestsuites/Core/UnreachableTest.php</file>
<file>tests/src/SpecTestsuites/Core/UnreachedInvalidTest.php</file>
<file>tests/src/SpecTestsuites/Core/UnreachedValidTest.php</file>
<file>tests/src/SpecTestsuites/Core/UnwindTest.php</file>
<file>tests/src/SpecTestsuites/Core/Utf8InvalidEncodingTest.php</file>
</testsuite>
</testsuites>
<source ignoreIndirectDeprecations="true" restrictNotices="true" restrictWarnings="true">
<include>
<directory>src</directory>
</include>
</source>
</phpunit>