Skip to content

Commit bc5c1ce

Browse files
authored
Create phpunit.xml
1 parent f265f34 commit bc5c1ce

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

phpunit.xml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.5/phpunit.xsd"
4+
bootstrap="vendor/autoload.php"
5+
colors="true"
6+
cacheDirectory=".phpunit.cache"
7+
executionOrder="depends,defects"
8+
beStrictAboutOutputDuringTests="true"
9+
failOnWarning="true">
10+
11+
<testsuites>
12+
<testsuite name="Bermuda Number Test Suite">
13+
<directory>tests</directory>
14+
</testsuite>
15+
</testsuites>
16+
17+
<source>
18+
<include>
19+
<directory>src</directory>
20+
</include>
21+
</source>
22+
23+
<logging>
24+
<junit outputFile="junit.xml"/>
25+
</logging>
26+
</phpunit>

0 commit comments

Comments
 (0)