* Add support for prepared statements. This should be safer than dumping variables...
[lhc/web/wiklou.git] / tests / RunTests.php
1 <?php
2 error_reporting( E_ALL );
3 define( "MEDIAWIKI", true );
4
5 require_once( 'PHPUnit.php' );
6 require_once( 'DatabaseTest.php' );
7
8 $suite = new PHPUnit_TestSuite( "DatabaseTest" );
9 $result = PHPUnit::run( $suite );
10 echo $result->toString();
11
12 ?>