-
Notifications
You must be signed in to change notification settings - Fork 34
/
phpunit.xml.dist
43 lines (38 loc) · 2.02 KB
/
phpunit.xml.dist
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
bootstrap="vendor/autoload.php"
colors="false"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.2/phpunit.xsd"
cacheDirectory=".phpunit.cache"
>
<php>
<ini name="error_reporting" value="-1" />
<!-- Run `php -S localhost:8100 bin/test-server.php` first -->
<!--<const name="WINDWALKER_TEST_HTTP_URL" value="http://localhost:8100" />-->
<!--<const name="WINDWALKER_TEST_DB_DSN_MYSQL" value="host=localhost;dbname=windwalker_test;user=root;password=ut1234;prefix=ww_" />-->
<!--<const name="WINDWALKER_TEST_DB_DSN_POSTGRESQL" value="host=localhost;dbname=windwalker_test;user=root;password=ut1234;prefix=ww_" />-->
<!--<const name="WINDWALKER_TEST_DB_DSN_ORACLE" value="host=localhost;port=5432;dbname=windwalker_test;user=root;password=ut1234;prefix=ww_" />-->
<!--<const name="WINDWALKER_TEST_DB_DSN_SQLSERVER" value="host=localhost;port=1521;dbname=windwalker_test;user=root;password=ut1234;prefix=ww_" />-->
<!--<const name="WINDWALKER_TEST_DB_DSN_SQLITE" value="dbname=tmp/test.db;prefix=ww_" />-->
<!--<env name="REDIS_ENABLED" value="1" />-->
<!--<env name="MEMCACHED_ENABLED" value="1" />-->
<!--<env name="SWOOLE_ENABLED" value="1" />-->
</php>
<testsuites>
<testsuite name="Unit">
<directory>packages/*/test</directory>
</testsuite>
</testsuites>
<!-- Code Coverage -->
<!-- <filter>-->
<!-- <whitelist processUncoveredFilesFromWhitelist="true">-->
<!-- <directory suffix=".php">packages</directory>-->
<!-- <exclude>-->
<!-- <directory suffix=".php">packages/*/test</directory>-->
<!-- <directory suffix=".php">packages/*/.ide</directory>-->
<!-- <directory suffix=".php">packages/*/resources</directory>-->
<!-- <file suffix=".php">packages/utilities/src/weak_reference.php</file>-->
<!-- </exclude>-->
<!-- </whitelist>-->
<!-- </filter>-->
</phpunit>