Browse code

initial-commit

rcraig12 authored on 11/11/2018 19:37:45
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,33 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+<phpunit backupGlobals="false"
3
+         backupStaticAttributes="false"
4
+         bootstrap="vendor/autoload.php"
5
+         colors="true"
6
+         convertErrorsToExceptions="true"
7
+         convertNoticesToExceptions="true"
8
+         convertWarningsToExceptions="true"
9
+         processIsolation="false"
10
+         stopOnFailure="false">
11
+    <testsuites>
12
+        <testsuite name="Unit">
13
+            <directory suffix="Test.php">./tests/Unit</directory>
14
+        </testsuite>
15
+
16
+        <testsuite name="Feature">
17
+            <directory suffix="Test.php">./tests/Feature</directory>
18
+        </testsuite>
19
+    </testsuites>
20
+    <filter>
21
+        <whitelist processUncoveredFilesFromWhitelist="true">
22
+            <directory suffix=".php">./app</directory>
23
+        </whitelist>
24
+    </filter>
25
+    <php>
26
+        <env name="APP_ENV" value="testing"/>
27
+        <env name="BCRYPT_ROUNDS" value="4"/>
28
+        <env name="CACHE_DRIVER" value="array"/>
29
+        <env name="MAIL_DRIVER" value="array"/>
30
+        <env name="QUEUE_CONNECTION" value="sync"/>
31
+        <env name="SESSION_DRIVER" value="array"/>
32
+    </php>
33
+</phpunit>