commit 42aa5d54c626a64d6be7a48d7908e5a23f04d6a1 parent e2cfa0f3dd5d1209c86563974980201c5b331128 Author: Marcel <MTRNord@users.noreply.github.com> Date: Tue, 13 Oct 2015 20:55:43 +0200 Create phpunit.xml Diffstat:
| A | phpunit.xml | | | 24 | ++++++++++++++++++++++++ |
1 file changed, 24 insertions(+), 0 deletions(-)
diff --git a/phpunit.xml b/phpunit.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<phpunit bootstrap="tests/bootstrap.php" colors="true" verbose="true"> + <php> + <var name="db_dsn" value="mysqli:dbname=RPICMS;host=localhost"/> + <var name="db_username" value="root"/> + <var name="db_password" value=""/> + </php> + <testsuite name="mysqliLoadedTest"> + <file>tests/mysqliLoadedTest.php</file> + <file>tests/mysqliMakeDB.php</file> + </testsuite> + <logging> + <log type="coverage-clover" target="build/logs/clover.xml"/> + </logging> + <filter> + <whitelist> + <directory>./</directory> + <exclude> + <directory>./tests</directory> + </exclude> + </whitelist> + </filter> +</phpunit>