PHP Classes

File: phpunit.xml

Recommend this page to a friend!
  Classes of Slawomir Kaleta   Dframe Database   phpunit.xml   Download  
File: phpunit.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Dframe Database
Access a MySQL database using PDO
Author: By
Last change: Update of phpunit.xml
Date: 3 years ago
Size: 654 bytes
 

Contents

Class file image Download
<?xml version="1.0" encoding="UTF-8"?> <phpunit bootstrap="tests/Bootstrap.php" colors="true"> <php> <var name="db_dsn" value="mysql:host=localhost:3306;dbname=test;host=mysql"/> <var name="db_username" value="root"/> <var name="db_password" value=""/> </php> <testsuites> <testsuite name="Hello World Test Suite"> <directory>./tests/</directory> </testsuite> </testsuites> <filter> <whitelist> <directory>./</directory> <exclude> <directory>./tests</directory> </exclude> </whitelist> </filter> </phpunit>