forked from ethnamphp/ethnam
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
24 lines (24 loc) · 744 Bytes
/
phpunit.xml.dist
File metadata and controls
24 lines (24 loc) · 744 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 backupGlobals="true"
backupStaticAttributes="false"
bootstrap="bootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="false"
convertWarningsToExceptions="false"
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
syntaxCheck="true"
verbose="true">
<php>
<ini name="date.timezone" value="Asia/Tokyo" />
</php>
<testsuites>
<testsuite name="Ethna Test Suite">
<directory>src/Tests</directory>
</testsuite>
</testsuites>
</phpunit>