Skip to content

Commit f1582af

Browse files
committed
wip
1 parent f0046ec commit f1582af

File tree

2 files changed

+43
-27
lines changed

2 files changed

+43
-27
lines changed

phpunit.xml.dist

Lines changed: 14 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,16 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
backupGlobals="false"
4-
backupStaticAttributes="false"
5-
beStrictAboutTestsThatDoNotTestAnything="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-
verbose="true"
14-
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
15-
16-
<testsuites>
17-
<testsuite name="Tests">
18-
<directory suffix="Test.php">./tests/</directory>
19-
</testsuite>
20-
</testsuites>
21-
<coverage includeUncoveredFiles="false">
22-
<include>
23-
<directory suffix=".php">src/</directory>
24-
</include>
25-
</coverage>
26-
<php>
27-
<env name="APP_ENV" value="testing" />
28-
</php>
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" beStrictAboutTestsThatDoNotTestAnything="false" bootstrap="vendor/autoload.php" colors="true" processIsolation="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" cacheDirectory=".phpunit.cache" backupStaticProperties="false">
3+
<testsuites>
4+
<testsuite name="Tests">
5+
<directory suffix="Test.php">./tests/</directory>
6+
</testsuite>
7+
</testsuites>
8+
<php>
9+
<env name="APP_ENV" value="testing"/>
10+
</php>
11+
<source>
12+
<include>
13+
<directory suffix=".php">src/</directory>
14+
</include>
15+
</source>
2916
</phpunit>

phpunit.xml.dist.bak

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
backupGlobals="false"
4+
backupStaticAttributes="false"
5+
beStrictAboutTestsThatDoNotTestAnything="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+
verbose="true"
14+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
15+
16+
<testsuites>
17+
<testsuite name="Tests">
18+
<directory suffix="Test.php">./tests/</directory>
19+
</testsuite>
20+
</testsuites>
21+
<coverage includeUncoveredFiles="false">
22+
<include>
23+
<directory suffix=".php">src/</directory>
24+
</include>
25+
</coverage>
26+
<php>
27+
<env name="APP_ENV" value="testing" />
28+
</php>
29+
</phpunit>

0 commit comments

Comments
 (0)