This repository has been archived by the owner on Mar 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
44 lines (43 loc) · 1.61 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
44
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
beStrictAboutTestsThatDoNotTestAnything="true"
bootstrap="vendor/autoload.php"
cacheResult="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
verbose="true">
<testsuites>
<testsuite name="Creole Translator Tests">
<directory suffix="Test.php">tests</directory>
</testsuite>
<testsuite name="Creole Translator Feature Tests">
<directory suffix="Test.php">tests/Feature</directory>
</testsuite>
<testsuite name="Creole Translator Integration Tests">
<directory suffix="Test.php">tests/Integration</directory>
</testsuite>
<testsuite name="Creole Translator Unit Tests">
<directory suffix="Test.php">tests/Unit</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src/</directory>
</whitelist>
</filter>
<php>
<ini name="error_reporting" value="E_ALL" />
<ini name="display_errors" value="1" />
<ini name="display_startup_errors" value="1" />
<env name="APP_ENV" value="testing"/>
</php>
<logging>
<log type="coverage-text" target="build/coverage.txt"/>
<log type="coverage-clover" target="build/coverage.xml"/>
</logging>
</phpunit>