-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
24 lines (21 loc) · 924 Bytes
/
phpunit.xml.dist
File metadata and controls
24 lines (21 loc) · 924 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="vendor/autoload.php" backupGlobals="false" backupStaticAttributes="false" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" stopOnFailure="false">
<testsuites>
<testsuite name="libuv-ffi Test Suite">
<directory suffix=".phpt">tests/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">src/</directory>
<file>preload.php</file>
<exclude>
<directory suffix=".php">examples/</directory>
<directory suffix=".h">headers/</directory>
<file>headers/uv_ffi.stub.php</file>
<file>.ignore_autoload.php</file>
<file>ffi_preloader.php</file>
</exclude>
</whitelist>
</filter>
</phpunit>