Skip to content
This repository has been archived by the owner on Jan 31, 2020. It is now read-only.

Commit

Permalink
Updated PHPUnit configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
michalbundyra committed Apr 27, 2018
1 parent 7228b86 commit 203e872
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 55 deletions.
25 changes: 4 additions & 21 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,34 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="./test/bootstrap.php"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="vendor/autoload.php"
colors="true">
<testsuites>
<testsuite name="zend-text Test Suite">
<directory>./test/</directory>
<directory>./test</directory>
</testsuite>
</testsuites>

<groups>
<exclude>
<group>disable</group>
</exclude>
</groups>

<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./src</directory>
</whitelist>
</filter>

<php>
<ini name="date.timezone" value="UTC"/>

<!-- OB_ENABLED should be enabled for some tests to check if all
functionality works as expected. Such tests include those for
Zend\Soap and Zend\Session, which require that headers not be sent
in order to work. -->
<env name="TESTS_ZEND_OB_ENABLED" value="false" />

</php>
</phpunit>
34 changes: 0 additions & 34 deletions test/bootstrap.php

This file was deleted.

0 comments on commit 203e872

Please sign in to comment.