-
Notifications
You must be signed in to change notification settings - Fork 1
/
phpunit.dist.xml
29 lines (29 loc) · 987 Bytes
/
phpunit.dist.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="./tests/bootstrap.php"
colors="true"
convertErrorsToExceptions="false"
convertNoticesToExceptions="false"
convertWarningsToExceptions="false"
processIsolation="false"
stopOnFailure="false">
<testsuites>
<testsuite name="Application Test Suite">
<directory>./tests/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">app/</directory>
</whitelist>
</filter>
<php>
<env name="FOOD_ID" value="food_id"/>
<env name="FOOD_KEY" value="food_key"/>
<env name="RECIPE_ID" value="recipe_id"/>
<env name="RECIPE_KEY" value="recipe_key"/>
<env name="NUTRITION_ID" value="nutrition_id"/>
<env name="NUTRITION_KEY" value="nutrition_key"/>
</php>
</phpunit>