-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathphpunit.xml.dist
24 lines (23 loc) · 1.06 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
bootstrap="test/app/bootstrap.php"
colors="false"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
syntaxCheck="true"
>
<php>
<ini name="error_reporting" value="32767" />
<const name="WINDWALKER_TEST_DB_DSN_MYSQL" value="host=localhost;dbname=windwalker_test;user=root;pass=;prefix=ww_" />
<!--<const name="WINDWALKER_TEST_DB_DSN_POSTGRESQL" value="host=localhost;dbname=windwalker_test;user=root;pass=;prefix=ww_" />-->
<!--<const name="WINDWALKER_TEST_DB_DSN_ORACLE" value="host=localhost;port=5432;dbname=windwalker_test;user=root;pass=;prefix=ww_" />-->
<!--<const name="WINDWALKER_TEST_DB_DSN_MSSQL" value="host=localhost;port=1521;dbname=windwalker_test;user=root;pass=;prefix=ww_" />-->
<!--<const name="WINDWALKER_TEST_DB_DSN_SQLITE" value="host=localhost;dbname=windwalker_test;user=root;pass=;prefix=ww_" />-->
</php>
<testsuites>
<testsuite name="Core">
<directory>test</directory>
</testsuite>
</testsuites>
</phpunit>