commit 080ac8cc29d5e043e17838753cca1533695754e8 parent f9c71d01ae9e406cf0aada39ee6e08d1d5bf5cde Author: Marcel <MTRNord@users.noreply.github.com> Date: Sun, 4 Oct 2015 02:41:23 +0200 Create phpunit_mysql.xml Diffstat:
| A | phpunit_mysql.xml | | | 24 | ++++++++++++++++++++++++ |
1 file changed, 24 insertions(+), 0 deletions(-)
diff --git a/phpunit_mysql.xml b/phpunit_mysql.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<phpunit indexTest="Tests/indexTest.php" colors="true"> + <php> + <var name="db_dsn" value="mysql:dbname=hello_world_test;host=localhost"/> + <var name="db_username" value="root"/> + <var name="db_password" value=""/> + </php> + + <testsuites> + <testsuite name="RPICMS Test Suite"> + <directory>./Tests/</directory> + </testsuite> + </testsuites> + + <filter> + <whitelist> + <directory>./</directory> + <exclude> + <directory>./Tests</directory> + </exclude> + </whitelist> + </filter> +</phpunit>