Skip to content

Commit f7ebe8e

Browse files
committed
fix: phpunit.xml conflit
1 parent 9ff48fd commit f7ebe8e

File tree

1 file changed

+6
-61
lines changed

1 file changed

+6
-61
lines changed

phpunit.xml

Lines changed: 6 additions & 61 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,11 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<<<<<<< HEAD
3-
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
5-
bootstrap="vendor/autoload.php"
6-
colors="true"
2+
<phpunit
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.4/phpunit.xsd"
5+
bootstrap="vendor/autoload.php"
6+
colors="true"
7+
cacheDirectory=".phpunit.cache"
78
>
8-
<testsuites>
9-
<testsuite name="Unit">
10-
<directory>tests/Unit</directory>
11-
</testsuite>
12-
<testsuite name="Feature">
13-
<directory>tests/Feature</directory>
14-
</testsuite>
15-
</testsuites>
16-
<source>
17-
<include>
18-
<directory>app</directory>
19-
</include>
20-
</source>
21-
<php>
22-
<env name="APP_ENV" value="testing"/>
23-
<env name="APP_KEY" value="base64:NXoQgjw2ZlOxnGbo5ZRhYgTdM6xLYsgYElNAgcTQJkE="/>
24-
<env name="BCRYPT_ROUNDS" value="4"/>
25-
<env name="CACHE_STORE" value="array"/>
26-
<env name="DB_CONNECTION" value="sqlite"/>
27-
<env name="DB_DATABASE" value=":memory:"/>
28-
<env name="MAIL_MAILER" value="array"/>
29-
<env name="PULSE_ENABLED" value="false"/>
30-
<env name="QUEUE_CONNECTION" value="sync"/>
31-
<env name="SESSION_DRIVER" value="array"/>
32-
</php>
33-
||||||| parent of db5bfeb (refactoring: Drop laravel world dependencies and apply refactoring to views and tests)
34-
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.4/phpunit.xsd" bootstrap="vendor/autoload.php" colors="true" cacheDirectory=".phpunit.cache">
359
<testsuites>
3610
<testsuite name="Integration">
3711
<directory suffix="Test.php">./tests/Integration</directory>
@@ -58,33 +32,4 @@
5832
<directory suffix=".php">./app</directory>
5933
</include>
6034
</source>
61-
=======
62-
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.4/phpunit.xsd" bootstrap="vendor/autoload.php" colors="true" cacheDirectory=".phpunit.cache">
63-
<testsuites>
64-
<testsuite name="Unit">
65-
<directory suffix="Test.php">./tests/Unit</directory>
66-
</testsuite>
67-
<testsuite name="Feature">
68-
<directory suffix="Test.php">./tests/Feature</directory>
69-
</testsuite>
70-
</testsuites>
71-
<coverage/>
72-
<php>
73-
<server name="APP_ENV" value="testing"/>
74-
<env name="APP_KEY" value="base64:NXoQgjw2ZlOxnGbo5ZRhYgTdM6xLYsgYElNAgcTQJkE="/>
75-
<server name="BCRYPT_ROUNDS" value="4"/>
76-
<server name="CACHE_DRIVER" value="array"/>
77-
<server name="DB_CONNECTION" value="sqlite"/>
78-
<server name="DB_DATABASE" value=":memory:"/>
79-
<server name="MAIL_MAILER" value="array"/>
80-
<server name="QUEUE_CONNECTION" value="sync"/>
81-
<server name="SESSION_DRIVER" value="array"/>
82-
<server name="TELESCOPE_ENABLED" value="false"/>
83-
</php>
84-
<source>
85-
<include>
86-
<directory suffix=".php">./app</directory>
87-
</include>
88-
</source>
89-
>>>>>>> db5bfeb (refactoring: Drop laravel world dependencies and apply refactoring to views and tests)
9035
</phpunit>

0 commit comments

Comments
 (0)