-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
executable file
·57 lines (56 loc) · 2.97 KB
/
Copy pathphpunit.xml.dist
File metadata and controls
executable file
·57 lines (56 loc) · 2.97 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
<?xml version="1.0" encoding="UTF-8"?>
<!-- https://phpunit.readthedocs.io/en/latest/configuration.html -->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
backupGlobals="false" colors="true"
bootstrap="./tests/bootstrap.php">
<coverage processUncoveredFiles="true">
<include>
<directory>./src</directory>
</include>
<exclude>
<directory>./tests</directory>
<directory>./src/*Bundle/Resources</directory>
<directory>./src/*/*Bundle/Resources</directory>
<directory>./src/*/Bundle/*Bundle/Resources</directory>
</exclude>
</coverage>
<testsuites>
<testsuite name="Pannelloamministrazione">
<directory suffix=".php">./tests/Cdf/PannelloAmministrazioneBundle/Command</directory>
<directory suffix=".php">./tests/Cdf/PannelloAmministrazioneBundle/Controller</directory>
<directory suffix=".php">./tests/Cdf/PannelloAmministrazioneBundle/Functional</directory>
</testsuite>
<testsuite name="App">
<directory suffix=".php">./tests/App/Controller</directory>
<directory suffix=".php">./tests/App/Functional</directory>
<directory suffix=".php">./tests/Cdf/BiCoreBundle/Collector</directory>
<directory suffix=".php">./tests/Cdf/BiCoreBundle/Command</directory>
<directory suffix=".php">./tests/Cdf/BiCoreBundle/Controller</directory>
<directory suffix=".php">./tests/Cdf/BiCoreBundle/Entity</directory>
<directory suffix=".php">./tests/Cdf/BiCoreBundle/Utils</directory>
<directory suffix=".php">./tests/Cdf/BiCoreBundle/Listener</directory>
</testsuite>
</testsuites>
<php>
<server name="KERNEL_CLASS" value="App\Kernel"/>
<server name="APP_ENV" value="test" force="true"/>
<env name="APP_SECRET" value="1add8dda304e6a9a7f7f7d0f39c0244c"/>
<server name="SYMFONY_PHPUNIT_VERSION" value="9.5"/>
<env name="SYMFONY_DEPRECATIONS_HELPER" value="max[total]=9999&max[self]=536"/>
<!-- <server name="PANTHER_WEB_SERVER_PORT" value="9090"/> -->
<!-- <server name="PANTHER_WEB_SERVER_ROUTER" value="/{FULLPATH}/tests/router.php"/> -->
<!-- <server name="PANTHER_WEB_SERVER_DIR" value="/{FULLPATH}/tests/public"/> -->
<server name="PANTHER_NO_HEADLESS" value="0"/>
<server name="PANTHER_NO_SANDBOX" value="1"/>
<env name="MAILER_DSN" value="smtp://localhost"/>
<!-- <env name="DATABASE_URL" value="postgresql://symfony:ChangeMe@127.0.0.1:5432/app?serverVersion=13&charset=utf8"/>-->
<env name="locale" value="it"/>
</php>
<listeners>
<listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener" />
</listeners>
<extensions>
<extension class="Symfony\Component\Panther\ServerExtension"/>
</extensions>
</phpunit>