TestServicesConfig::__construct PHP Method

__construct() public method

constructor
public __construct ( )
    public function __construct()
    {
        parent::__construct();
        $this->serviceFolders = array(dirname(__FILE__) . '/Services/', dirname(__FILE__) . '/MoreServices/');
        $this->serviceFolders[] = array(dirname(__FILE__) . '/NamespaceServices/', 'NService');
        $this->serviceFolders[] = dirname(__FILE__) . '/../../Examples/Php/ExampleServices/';
        $testServicePath = dirname(__FILE__) . '/TestService.php';
        $classFindInfo = new Amfphp_Core_Common_ClassFindInfo($testServicePath, 'TestService');
        $this->serviceNames2ClassFindInfo = array('TestService' => $classFindInfo);
        $voFolders = array(AMFPHP_ROOTPATH . 'Services/Vo/', dirname(__FILE__) . '/../../Examples/Php/Vo/');
        $voFolders[] = array(dirname(__FILE__) . '/NamespaceVos/', 'NVo');
        $this->pluginsConfig['AmfphpVoConverter']['voFolders'] = $voFolders;
        //$this->pluginsConfig['AmfphpVoConverter']['enforceConversion'] = true;
        //My tests, shouldn't be in release code!!
        switch (php_uname('s')) {
            case 'Darwin':
                $this->pluginsFolders[] = '/Users/ariel/Documents/workspaces/baguetteamf/BaguetteAMF/amfphp_plugin/';
                break;
            case 'Linux':
                $this->pluginsFolders[] = '/var/www/baguetteamf/BaguetteAMF/amfphp_plugin/';
                break;
        }
        //$this->serviceFolders [] = '/Users/arielsommeria-klein/Documents/workspaces/baguetteamf/test/Services/';
    }
TestServicesConfig