This repository has been archived by the owner on Oct 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 41
/
phpunit.xml.dist
78 lines (64 loc) · 3.24 KB
/
phpunit.xml.dist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="tests/bootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="true">
<testsuites>
<testsuite name="LaravelFly_tmp">
<file>./tests/Map/Unit/ApplicationCorTest.php</file>
<!--<file>./tests/Map/Feature/ObjectsInWorkerTest.php</file>-->
<!--<file>./tests/Map/Unit/Illuminate/Translation/TranslatorTest.php</file>-->
</testsuite>
<testsuite name="only_fly">
<file>./tests/Map/Feature/FlyOfficialFilesTest.php</file>
<file>./tests/Map/Feature/ExtendedFlyFilesTest.php</file>
</testsuite>
<testsuite name="LaravelFly_Map_Process">
<file>./tests/Map/Unit/FlyTest.php</file>
<file>./tests/Map/Feature/FlyOfficialFilesTest.php</file>
<file>./tests/Map/Feature/ObjectsInWorkerTest.php</file>
<file>./tests/Map/Feature/SuperGlobalVarsTest.php</file>
<file>./tests/Map/Feature/Fly/StreamHandlerTest.php</file>
<!--this test file can not run indepentent.php. Cause has not jet found. -->
<file>./tests/Map/Unit/ApplicationCorTest.php</file>
<file>./tests/Map/Unit/Server/IncludeFlyFilesTest.php</file>
<file>./tests/Map/Unit/Server/CommonTest.php</file>
<!--this test file can not run indepentent.php. Cause has not jet found. -->
<file>./tests/Map/Unit/Server/HttpServerTest.php</file>
<file>./tests/Map/Unit/Server/Traits/DispatchRequestByQueryTest.php</file>
<file>./tests/Map/Unit/Server/Traits/WorkerTest.php</file>
<!-- this test file can not run indepentent.php. Cause has not jet found. -->
<file>./tests/Map/Unit/Illuminate/Translation/TranslatorTest.php</file>
</testsuite>
<testsuite name="LaravelFly_Map_No_Process_Used">
<file>./tests/Map/Unit/Server/CommonTest.php</file>
</testsuite>
<testsuite name="LaravelFly_Map_LaravelTests">
<file>./tests/Map/LaravelTests/TestCase.php</file>
</testsuite>
<testsuite name="LaravelFly_Backup">
<file>./tests/Backup/Unit/PropsTest.php</file>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./app</directory>
</whitelist>
</filter>
<php>
<env name="APP_ENV" value="testing"/>
<env name="CACHE_DRIVER" value="array"/>
<env name="SESSION_DRIVER" value="array"/>
<env name="QUEUE_DRIVER" value="sync"/>
<env name="LOG_CHANNEL" value="single"/>
<!--<env name="LARAVEL_PROJECT_ROOT" value="/vagrant/www/zc/vendor/scil/blog_for_test"/>-->
<env name="LARAVEL_PROJECT_ROOT" value="/vagrant/www/zc"/>
<!-- for Updating [laravel-fly-files](https://github.com/scil/LaravelFly-fly-files) to go with updated minor version of Laravel-->
<env name="LARAVEL_VERSION_PROJECT_ROOT" value="/vagrant/www/zc"/>
</php>
</phpunit>