Esempio n. 1
0
 /**
  *  get the sub test dirs
  *  
  *  the sub dirs are all the secondary test directories the test file might be in
  *  if it isn't in the {@link getMainTestDir()}       
  *
  *  @return array   
  */
 protected function getSubTestDirs()
 {
     $ret_list = array();
     // get all the plugin test paths...
     $plugin_paths = $this->framework_config->getPluginPaths();
     foreach ($plugin_paths as $plugin_path) {
         $ret_list[] = new Path($plugin_path, 'test');
     }
     //foeach
     $ret_list[] = new Path($this->framework_config->getFrameworkPath(), 'test');
     return $ret_list;
 }