File tree Expand file tree Collapse file tree 2 files changed +23
-28
lines changed Expand file tree Collapse file tree 2 files changed +23
-28
lines changed Original file line number Diff line number Diff line change @@ -28,3 +28,5 @@ yarn-error.log
28
28
/composer.lock
29
29
/reports
30
30
/build
31
+ .phpunit.cache
32
+ phpunit.xml.bak
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
- <phpunit
3
- backupGlobals =" false"
4
- backupStaticAttributes =" false"
5
- bootstrap =" vendor/autoload.php"
6
- colors =" true"
7
- convertErrorsToExceptions =" true"
8
- convertNoticesToExceptions =" true"
9
- convertWarningsToExceptions =" true"
10
- processIsolation =" false"
11
- stopOnFailure =" false" >
12
- <coverage >
13
- <include >
14
- <directory suffix =" .php" >src/</directory >
15
- </include >
16
- <report >
17
- <clover outputFile =" ./build/logs/clover.xml" />
18
- <html outputDirectory =" ./reports/" />
19
- </report >
20
- </coverage >
21
- <testsuites >
22
- <testsuite name =" Date To Words Test Suite" >
23
- <directory >Tests</directory >
24
- </testsuite >
25
- </testsuites >
26
- <logging />
27
- <php >
28
- <env name =" APP_ENV" value =" testing" />
29
- </php >
2
+ <phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" backupGlobals =" false" bootstrap =" vendor/autoload.php" colors =" true" processIsolation =" false" stopOnFailure =" false" xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/11.3/phpunit.xsd" cacheDirectory =" .phpunit.cache" backupStaticProperties =" false" >
3
+ <coverage >
4
+ <report >
5
+ <clover outputFile =" ./build/logs/clover.xml" />
6
+ <html outputDirectory =" ./reports/" />
7
+ </report >
8
+ </coverage >
9
+ <testsuites >
10
+ <testsuite name =" Date To Words Test Suite" >
11
+ <directory >Tests</directory >
12
+ </testsuite >
13
+ </testsuites >
14
+ <logging />
15
+ <php >
16
+ <env name =" APP_ENV" value =" testing" />
17
+ </php >
18
+ <source >
19
+ <include >
20
+ <directory suffix =" .php" >src/</directory >
21
+ </include >
22
+ </source >
30
23
</phpunit >
You can’t perform that action at this time.
0 commit comments