Skip to content

Commit

Permalink
Updated to latest PHPUnit version.
Browse files Browse the repository at this point in the history
Signed-off-by: Florian Wolters <wolters.fl@gmail.com>
  • Loading branch information
FlorianWolters committed Oct 11, 2014
1 parent 4301b24 commit 4463b08
Showing 1 changed file with 10 additions and 11 deletions.
21 changes: 10 additions & 11 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
! along with this program. If not, see <http://gnu.org/licenses/lgpl.txt>.
!
! Author: Florian Wolters <wolters.fl@gmail.com>
! Copyright: 2011-2014 Florian Wolters
! Copyright: 2011-2014 Florian Wolters (http://blog.florianwolters.de)
! License: http://gnu.org/licenses/lgpl.txt LGPL-3.0+
! Link: http://github.com/FlorianWolters/PHP-Component-Util-Reflection
!-->
Expand All @@ -28,7 +28,7 @@
! core functionality.
!-->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.0/phpunit.xsd"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.3/phpunit.xsd"
backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
Expand All @@ -37,7 +37,7 @@
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
forceCoversAnnotation="false"
forceCoversAnnotation="true"
mapTestClassNameToCoveredClassName="true"
printerClass="PHPUnit_TextUI_ResultPrinter"
processIsolation="false"
Expand All @@ -56,8 +56,8 @@
! used to compose a test suite out of test suites and test cases.
!-->
<testsuites>
<testsuite name="Unit (Class) Test Suite">
<directory>src/tests/unit-tests/php</directory>
<testsuite name="Default Test Suite">
<directory>src/test/php</directory>
</testsuite>
</testsuites>

Expand All @@ -68,15 +68,14 @@
<filter>
<blacklist>
<directory suffix=".php">vendor</directory>
<directory suffix=".php">src/tests</directory>
<directory suffix=".php">src/test</directory>
</blacklist>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src/bin</directory>
<directory suffix=".php">src/php</directory>
<directory suffix=".php">src/main/php</directory>
<exclude>
<directory suffix="Enum.php">src/php</directory>
<directory suffix="Exception.php">src/php</directory>
<directory suffix="Interface.php">src/php</directory>
<directory suffix="Enum.php">src/main/php</directory>
<directory suffix="Exception.php">src/main/php</directory>
<directory suffix="Interface.php">src/main/php</directory>
</exclude>
</whitelist>
</filter>
Expand Down

0 comments on commit 4463b08

Please sign in to comment.