forked from php-flasher/php-flasher
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
70 lines (65 loc) · 2.65 KB
/
phpunit.xml.dist
File metadata and controls
70 lines (65 loc) · 2.65 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
bootstrap="vendor/autoload.php"
colors="true"
stopOnFailure="true"
cacheDirectory=".cache/phpunit/"
displayDetailsOnTestsThatTriggerDeprecations="false"
>
<php>
<ini name="display_errors" value="1"/>
<ini name="error_reporting" value="-1"/>
<server name="KERNEL_CLASS" value="Flasher\Tests\Symfony\Fixtures\FlasherKernel"/>
<server name="APP_ENV" value="test" force="true"/>
<server name="SHELL_VERBOSITY" value="-1"/>
<server name="SYMFONY_PHPUNIT_REMOVE" value=""/>
<server name="SYMFONY_PHPUNIT_VERSION" value="10.5"/>
<server name="SYMFONY_DEPRECATIONS_HELPER" value="verbose"/>
<server name="RAY_ENABLED" value="(false)"/>
</php>
<testsuites>
<testsuite name="prime">
<directory>tests/Prime</directory>
<directory>tests/Noty/Prime</directory>
<directory>tests/Notyf/Prime</directory>
<directory>tests/SweetAlert/Prime</directory>
<directory>tests/Toastr/Prime</directory>
</testsuite>
<testsuite name="laravel">
<directory>tests/Laravel</directory>
<directory>tests/Noty/Laravel</directory>
<directory>tests/Notyf/Laravel</directory>
<directory>tests/SweetAlert/Laravel</directory>
<directory>tests/Toastr/Laravel</directory>
</testsuite>
<testsuite name="symfony">
<directory>tests/Symfony</directory>
<directory>tests/Noty/Symfony</directory>
<directory>tests/Notyf/Symfony</directory>
<directory>tests/SweetAlert/Symfony</directory>
<directory>tests/Toastr/Symfony</directory>
</testsuite>
</testsuites>
<coverage>
<report>
<html outputDirectory="coverage/phpunit/html"/>
<text outputFile="php://stdout" showUncoveredFiles="false"/>
</report>
</coverage>
<source>
<include>
<directory suffix=".php">src</directory>
</include>
<exclude>
<file>src/Prime/.phpstorm.meta.php</file>
<file>src/Laravel/.phpstorm.meta.php</file>
<file>src/Symfony/.phpstorm.meta.php</file>
<file>src/Noty/Prime/.phpstorm.meta.php</file>
<file>src/Notyf/Prime/.phpstorm.meta.php</file>
<file>src/SweetAlert/Prime/.phpstorm.meta.php</file>
<file>src/Toastr/Prime/.phpstorm.meta.php</file>
</exclude>
</source>
</phpunit>