-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
56 lines (48 loc) · 1.95 KB
/
phpunit.xml.dist
File metadata and controls
56 lines (48 loc) · 1.95 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
<?xml version="1.0" encoding="UTF-8"?>
<!-- https://phpunit.readthedocs.io/en/8.0/configuration.html, XmlUnboundNsPrefix -->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/8.0/phpunit.xsd"
colors="true"
bootstrap="tests/tests_bootstrap.php"
cacheTokens="false"
verbose="true"
>
<php>
<ini name="error_reporting" value="-1"/>
<!-- ###+ ResultsDoctrine -->
<env name="DATABASE_HOST" value="127.0.0.1"/>
<env name="DATABASE_NAME" value="orm_doctrine"/>
<env name="DATABASE_PORT" value="3306"/>
<env name="DATABASE_USER" value="root"/> <!-- CHANGE!!! -->
<env name="DATABASE_PASSWD" value=""/> <!-- CHANGE!!! -->
<env name="DATABASE_DRIVER" value="pdo_mysql"/>
<env name="DATABASE_CHARSET" value="UTF8"/>
<!-- User ADMIN username/password -->
<env name="ADMIN_USER_NAME" value="gabe"/> <!-- CHANGE!!! -->
<env name="ADMIN_USER_EMAIL" value="admin-miw@example.com"/>
<env name="ADMIN_USER_PASSWD" value="685615119"/> <!-- CHANGE!!! -->
<env name="ENTITY_DIR" value="./src/Entity/"/>
<!-- muestra consulta SQL por la salida estándar-->
<env name="DEBUG" value="0"/>
<!-- ###- ResultsDoctrine -->
</php>
<!-- logging>
<log type="coverage-clover" target="build/logs/clover.xml"/>
</logging -->
<testsuites>
<testsuite name="MiW Results testing">
<directory>tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>src/</directory>
<exclude>
<directory>./tests/</directory>
<directory>./bin/</directory>
<directory>./vendor/</directory>
<file>./src/Utils.php</file>
</exclude>
</whitelist>
</filter>
</phpunit>