-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathphpunit.xml
More file actions
executable file
·23 lines (23 loc) · 886 Bytes
/
Copy pathphpunit.xml
File metadata and controls
executable file
·23 lines (23 loc) · 886 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/12.5/phpunit.xsd"
bootstrap="vendor/autoload.php"
colors="true"
cacheDirectory=".phpunit.cache">
<testsuites>
<testsuite name="unit">
<file>tests/Audit/QueryTest.php</file>
<!-- Pure SQL-shape snapshots; no ClickHouse server required. -->
<file>tests/Audit/Adapter/ClickHouseSqlSnapshotTest.php</file>
</testsuite>
<testsuite name="e2e">
<directory>tests/Audit/Adapter</directory>
<exclude>tests/Audit/Adapter/ClickHouseSqlSnapshotTest.php</exclude>
</testsuite>
</testsuites>
<source>
<include>
<directory>src</directory>
</include>
</source>
</phpunit>