-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
47 lines (44 loc) · 1.91 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.4/phpunit.xsd"
backupGlobals="false"
colors="true"
cacheDirectory="vendor/.phpunit.cache"
>
<php>
<ini name="display_errors" value="1" />
<ini name="error_reporting" value="-1" />
<ini name="memory_limit" value="-1"/>
</php>
<testsuites>
<testsuite name="phplrt/lsp-protocol">
<directory suffix="TestCase.php">libs/lsp-protocol/tests</directory>
</testsuite>
<testsuite name="phplrt/rpc-dispatcher">
<directory suffix="TestCase.php">libs/rpc-dispatcher/tests</directory>
</testsuite>
<testsuite name="phplrt/rpc-hydrator">
<directory suffix="TestCase.php">libs/rpc-hydrator/tests</directory>
</testsuite>
<testsuite name="phplrt/rpc-message">
<directory suffix="TestCase.php">libs/rpc-message/tests</directory>
</testsuite>
<testsuite name="phplrt/rpc-message-factory">
<directory suffix="TestCase.php">libs/rpc-message-factory/tests</directory>
</testsuite>
<testsuite name="phplrt/rpc-protocol-jsonrpc">
<directory suffix="TestCase.php">libs/rpc-protocol-jsonrpc/tests</directory>
</testsuite>
</testsuites>
<coverage />
<source>
<include>
<directory suffix=".php">libs/lsp-protocol/src</directory>
<directory suffix=".php">libs/lsp-dispatcher/src</directory>
<directory suffix=".php">libs/lsp-hydrator/src</directory>
<directory suffix=".php">libs/lsp-message/src</directory>
<directory suffix=".php">libs/lsp-message-factory/src</directory>
<directory suffix=".php">libs/lsp-protocol-jsonrpc/src</directory>
</include>
</source>
</phpunit>