aboutsummaryrefslogtreecommitdiff
path: root/phpunit.xml.dist
diff options
context:
space:
mode:
authorJack Makiyama <[email protected]>2015-04-13 18:48:26 -0300
committerVictor Häggqvist <[email protected]>2015-07-09 19:23:11 +0200
commit20044b6835c5c94e1f70d31215fd5d9bf2722392 (patch)
tree9c46489fe45e7487a7fff4249960572aeead3ebb /phpunit.xml.dist
parent8c0e4337da5f1aaecb0e50e618e3fc63a1cd8c6a (diff)
Configure phpunit.xml.
Moves phpunit.xml file to phpunit.xml.dist and adds logging by stdout. Adds tests namespace on composer.json
Diffstat (limited to '')
-rw-r--r--phpunit.xml.dist (renamed from phpunit.xml)14
1 files changed, 5 insertions, 9 deletions
diff --git a/phpunit.xml b/phpunit.xml.dist
index 1d93ce4..1d99d68 100644
--- a/phpunit.xml
+++ b/phpunit.xml.dist
@@ -1,21 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
-
-<!-- http://phpunit.de/manual/4.1/en/appendixes.configuration.html -->
-<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.1/phpunit.xsd"
- backupGlobals="false"
- colors="true">
-
+<phpunit bootstrap="vendor/autoload.php"
+ colors="true">
<testsuites>
<testsuite name="Twig SortByFieldExtension Test Suite">
<directory>test</directory>
</testsuite>
</testsuites>
-
<filter>
<whitelist>
<directory>src</directory>
</whitelist>
</filter>
-
+ <logging>
+ <log type="coverage-text" target="php://stdout" showUncoveredFiles="false"/>
+ </logging>
</phpunit>