-
Notifications
You must be signed in to change notification settings - Fork 370
Expand file tree
/
Copy pathphpunit.xml
More file actions
93 lines (93 loc) · 3.78 KB
/
phpunit.xml
File metadata and controls
93 lines (93 loc) · 3.78 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
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
<?xml version="1.0"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" bootstrap="tests/bootstrap.php" colors="true" displayDetailsOnTestsThatTriggerDeprecations="true" displayDetailsOnTestsThatTriggerErrors="true" displayDetailsOnTestsThatTriggerNotices="true" displayDetailsOnTestsThatTriggerWarnings="true" displayDetailsOnPhpunitDeprecations="true" stopOnError="true" stopOnFailure="false" stopOnIncomplete="false" stopOnSkipped="false" stopOnRisky="false" cacheDirectory=".phpunit.cache">
<php>
<!-- Affects tests of CLI, etc. -->
<env name="PHAN_ENABLE_COLOR_OUTPUT" value="" force="true"/>
<env name="PHAN_DISABLE_COLOR_OUTPUT" value="" force="true"/>
<env name="PHAN_DISABLE_PROGRESS_BAR" value="1" force="true"/>
<env name="PHAN_COLOR_SCHEME" value="" force="true"/>
<ini name="serialize_precision" value="-1"/>
</php>
<testsuites>
<testsuite name="ForkPoolTest">
<file>tests/Phan/ForkPoolTest.php</file>
</testsuite>
<testsuite name="PhanTest">
<file>tests/Phan/PhanTest0.php</file>
<file>tests/Phan/PhanTest1.php</file>
<file>tests/Phan/PhanTest2.php</file>
<file>tests/Phan/PhanTest3.php</file>
<file>tests/Phan/PhanTest4.php</file>
<file>tests/Phan/PhanTest5.php</file>
<file>tests/Phan/PhanTest6.php</file>
<file>tests/Phan/PhanTest7.php</file>
<file>tests/Phan/PhanTest8.php</file>
<file>tests/Phan/PhanTest9.php</file>
<file>tests/Phan/PhanTest10.php</file>
<file>tests/Phan/PhanTestNew.php</file>
</testsuite>
<testsuite name="RasmusTest">
<file>tests/Phan/RasmusTest.php</file>
</testsuite>
<testsuite name="MultiFileTest">
<file>tests/Phan/MultiFileTest.php</file>
<file>tests/Phan/StrictArrayCheckingTest.php</file>
</testsuite>
<testsuite name="SoapTest">
<file>tests/Phan/SoapTest.php</file>
</testsuite>
<testsuite name="IntlTest">
<file>tests/Phan/IntlTest.php</file>
</testsuite>
<testsuite name="LanguageTest">
<directory>tests/Phan/Language</directory>
</testsuite>
<testsuite name="UtilTest">
<file>tests/Phan/AnalyzerTest.php</file>
<file>tests/Phan/DebugTest.php</file>
<file>tests/Phan/InternalStubCacheTest.php</file>
<directory>tests/Phan/Analysis</directory>
<directory>tests/Phan/AST</directory>
<directory>tests/Phan/Debug</directory>
<directory>tests/Phan/Exception</directory>
<directory>tests/Phan/Internal</directory>
<directory>tests/Phan/LanguageServer</directory>
<directory>tests/Phan/Library</directory>
<directory>tests/Phan/Output</directory>
</testsuite>
<testsuite name="PHP82Test">
<file>tests/Phan/PHP82Test.php</file>
</testsuite>
<testsuite name="PHP83Test">
<file>tests/Phan/PHP83Test.php</file>
</testsuite>
<testsuite name="PHP84Test">
<file>tests/Phan/PHP84Test.php</file>
</testsuite>
<testsuite name="PHP85Test">
<file>tests/Phan/PHP85Test.php</file>
</testsuite>
<testsuite name="Structure">
<file>tests/Phan/TestSuitesTest.php</file>
</testsuite>
<testsuite name="Plugin">
<file>tests/Phan/PluginV3Test.php</file>
<directory>tests/Phan/Plugin</directory>
</testsuite>
<testsuite name="Misc">
<file>tests/Phan/AsymmetricVisibilityTest.php</file>
<file>tests/Phan/CLIBuilderTest.php</file>
<file>tests/Phan/CLITest.php</file>
<file>tests/Phan/ConfigTest.php</file>
<directory>tests/Phan/Config</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory>src/Phan</directory>
</include>
<exclude>
<directory>src/Phan/Language/Internal</directory>
</exclude>
</source>
</phpunit>