forked from propelorm/Propel2
-
Notifications
You must be signed in to change notification settings - Fork 1
/
phpunit.xml.dist
51 lines (44 loc) · 1.87 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
bootstrap="tests/bootstrap.php"
>
<testsuites>
<testsuite name="Propel2 Test Suite">
<directory>tests/Propel/Tests/</directory>
</testsuite>
</testsuites>
<logging>
<log type="coverage-php" target="tests/clover.cov"/>
<!--<log type="coverage-html" target="tests/coverage-report" charset="UTF-8"
highlight="false" lowUpperBound="35" highLowerBound="70"/>-->
</logging>
<filter>
<whitelist>
<directory>src/Propel/</directory>
<exclude>
<directory>src/Propel/Generator/Builder/SQL/Mssql</directory>
<directory>src/Propel/Generator/Builder/SQL/Oracle</directory>
<directory>src/Propel/Generator/Builder/SQL/Sqlsrv</directory>
<file>src/Propel/Generator/Platform/MssqlPlatform.php</file>
<file>src/Propel/Generator/Platform/OraclePlatform.php</file>
<file>src/Propel/Generator/Platform/SqlsrvPlatform.php</file>
<file>src/Propel/Generator/Reverse/MssqlSchemaParser.php</file>
<file>src/Propel/Generator/Reverse/OracleSchemaParser.php</file>
<file>src/Propel/Generator/Reverse/SqlsrvSchemaParser.php</file>
<directory>src/Propel/Runtime/Adapter/MSSQL</directory>
<file>src/Propel/Runtime/Adapter/Pdo/MssqlAdapter.php</file>
<file>src/Propel/Runtime/Adapter/Pdo/OracleAdapter.php</file>
<file>src/Propel/Runtime/Adapter/Pdo/SqlsrvAdapter.php</file>
<file>src/Propel/Runtime/Adapter/Pdo/SqlsrvAdapter.php</file>
</exclude>
</whitelist>
</filter>
</phpunit>