DataObjects/Core_company.php
[Pman.Core] / tests / Tests.php
1 <?php
2
3 // include to make the tests run..
4 // this needs fixing - probably needs to point to a test framework..
5
6 function init() {
7     global $_test_dir  ;
8     $_test_dir  = '/var/www/web.roojsolutions/';
9     
10     ini_set('include_path', 
11                 $_test_dir  . ':' . 
12                 $_test_dir  .'/pearfix:' . 
13                 $_test_dir  .'/pear:' . 
14                 ini_get('include_path'));
15     
16     define('DB_DATAOBJECT_NO_OVERLOAD', true);
17     
18     require_once 'HTML/FlexyFramework/Page.php';
19     
20     class_exists('DB_DataObject') ? '' : require_once 'DB/DataObject.php';
21
22 }