forked from phan/phan
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
73 lines (70 loc) · 2.79 KB
/
phpunit.xml
File metadata and controls
73 lines (70 loc) · 2.79 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
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/5.0/phpunit.xsd"
bootstrap="src/Phan/Bootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
stopOnError="true"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
stopOnRisky="false"
backupStaticAttributes="true"
verbose="false">
<listeners>
<listener class="Phan\Tests\PhanTestListener"/>
</listeners>
<php>
<const name="RASMUS_TEST_FILE_DIR" value="./tests/rasmus_files/src"/>
<const name="RASMUS_EXPECTED_DIR" value="./tests/rasmus_files/expected"/>
<const name="AST_TEST_FILE_DIR" value="./tests/misc/ast/src"/>
<const name="AST_EXPECTED_DIR" value="./tests/misc/ast/expected"/>
<const name="TEST_FILE_DIR" value="./tests/files/src"/>
<const name="EXPECTED_DIR" value="./tests/files/expected"/>
<const name="MULTI_FILE_DIR" value="./tests/multi_files/src"/>
<const name="MULTI_EXPECTED_DIR" value="./tests/multi_files/expected"/>
<const name="SOAP_TEST_FILE_DIR" value="./tests/soap_files/src"/>
<const name="SOAP_EXPECTED_DIR" value="./tests/soap_files/expected"/>
<const name="INTL_TEST_FILE_DIR" value="./tests/intl_files/src"/>
<const name="INTL_EXPECTED_DIR" value="./tests/intl_files/expected"/>
</php>
<testsuites>
<testsuite name="AnalyzerTest">
<file>tests/Phan/AnalyzerTest.php</file>
</testsuite>
<testsuite name="ForkPoolTest">
<file>tests/Phan/ForkPoolTest.php</file>
</testsuite>
<testsuite name="PhanTest">
<file>tests/Phan/PhanTest.php</file>
</testsuite>
<testsuite name="RasmusTest">
<file>tests/Phan/RasmusTest.php</file>
</testsuite>
<testsuite name="MultiFileTest">
<file>tests/Phan/MultiFileTest.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="OutputPrinterTest">
<directory>tests/Phan/Output/Printer</directory>
</testsuite>
<testsuite name="TupleTest">
<directory>tests/Phan/Library/TupleTest.php</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>src/</directory>
</whitelist>
</filter>
</phpunit>