phpunit_mysqli.xml (747B)
1 <?xml version="1.0" encoding="UTF-8"?> 2 3 <phpunit bootstrap="tests/bootstrap.php" colors="true" verbose="true"> 4 <php> 5 <var name="db_dsn" value="mysqli:dbname=RPICMS;host=localhost"/> 6 <var name="db_username" value="root"/> 7 <var name="db_password" value=""/> 8 </php> 9 <testsuite name="mysqliLoadedTest"> 10 <file>tests/mysqliLoadedTest.php</file> 11 <file>tests/mysqliMakeDB.php</file> 12 </testsuite> 13 <logging> 14 <log type="coverage-clover" target="build/logs/clover.xml"/> 15 </logging> 16 <filter> 17 <whitelist> 18 <directory>./</directory> 19 <exclude> 20 <directory>./tests</directory> 21 </exclude> 22 </whitelist> 23 </filter> 24 </phpunit>