-
Notifications
You must be signed in to change notification settings - Fork 2
/
phpunit.xml.dist
48 lines (46 loc) · 2.17 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
<?xml version="1.0"?>
<!-- initial phpunit configuration file, that you can modify for your project needs -->
<phpunit cacheTokens="true"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
strict="false"
verbose="false"
bootstrap="app/code/community/EcomDev/PHPUnit/bootstrap.php">
<listeners>
<listener file="app/code/community/EcomDev/PHPUnit/Test/Listener.php" class="EcomDev_PHPUnit_Test_Listener" />
</listeners>
<testsuite name="Magento Test Suite">
<file>app/code/community/EcomDev/PHPUnit/Test/Suite.php</file>
</testsuite>
<filter>
<whitelist>
<directory suffix=".php">app/code/community/Diglin/Ricento</directory>
<exclude>
<!-- Blacklist all magento setup scripts -->
<directory prefix="mysql4-" suffix=".php">app/code/community/Diglin/Ricento</directory>
<directory prefix="install-" suffix=".php">app/code/community/Diglin/Ricento</directory>
<directory prefix="upgrade-" suffix=".php">app/code/community/Diglin/Ricento</directory>
<directory prefix="data-" suffix=".php">app/code/community/Diglin/Ricento</directory>
<!-- Exclude UnitTests -->
<directory suffix=".php">app/code/community/Diglin/Ricento/*/Test</directory>
<directory suffix=".*">app/code/community/EcomDev</directory>
<directory suffix=".*">app/code/*/Zend</directory>
</exclude>
</whitelist>
</filter>
<logging>
<!-- Uncomment this line if you want to have coverage report generated every test run
<log type="coverage-html" target="var/phpunit/coverage" charset="UTF-8"
yui="true" highlight="false"
lowUpperBound="35" highLowerBound="70"/>
<log type="coverage-clover" target="var/phpunit/coverage.xml"/>
-->
<log type="junit" target="var/phpunit/junit.xml" logIncompleteSkipped="false"/>
</logging>
</phpunit>