~coughphp/coughphp/2.0

« back to all changes in this revision

Viewing changes to tests/cough/TestCoughInstancePool.class.php

  • Committer: Anthony Bush
  • Date: 2008-08-23 03:35:08 UTC
  • mfrom: (262.1.18 coughphp-release-1.3)
  • Revision ID: anthony@anthonybush.com-20080823033508-uy4yn5pmio6wcetv
Accept release-1.3 branch changes into trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
{
5
5
        public function __construct()
6
6
        {
7
 
                require_once(dirname(dirname(__FILE__)) . '/load.inc.php');
8
 
                require_once(dirname(dirname(__FILE__)) . '/CoughInstancePool.class.php');
 
7
                $coughRoot = dirname(dirname(dirname(__FILE__)));
 
8
                require_once($coughRoot . '/cough/load.inc.php');
 
9
                require_once($coughRoot . '/cough/CoughInstancePool.class.php');
9
10
                require_once(dirname(__FILE__) . '/config/InstancePoolTestObject.class.php');
10
11
                require_once(dirname(__FILE__) . '/config/InstancePoolTestObject2.class.php');
11
12
        }