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 'phpunit.xml.dist')
-rw-r--r--phpunit.xml.dist17
1 files changed, 17 insertions, 0 deletions
diff --git a/phpunit.xml.dist b/phpunit.xml.dist
new file mode 100644
index 0000000..1d99d68
--- /dev/null
+++ b/phpunit.xml.dist
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<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>