We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f265f34 commit bc5c1ceCopy full SHA for bc5c1ce
phpunit.xml
@@ -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