Skip to content

Commit 0006c8f

Browse files
committed
TDD basic parser
1 parent d27671a commit 0006c8f

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

phpunit.xml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
4+
backupGlobals="false"
5+
backupStaticAttributes="false"
6+
bootstrap="vendor/autoload.php"
7+
colors="true"
8+
convertErrorsToExceptions="true"
9+
convertNoticesToExceptions="true"
10+
convertWarningsToExceptions="true"
11+
processIsolation="false"
12+
stopOnFailure="false">
13+
<testsuites>
14+
<testsuite name="Unit">
15+
<directory suffix="Test.php">./tests/Unit</directory>
16+
</testsuite>
17+
18+
<testsuite name="Feature">
19+
<directory suffix="Test.php">./tests/Feature</directory>
20+
</testsuite>
21+
</testsuites>
22+
<php>
23+
<server name="APP_ENV" value="testing"/>
24+
</php>
25+
</phpunit>

0 commit comments

Comments
 (0)