public function __construct($name = NULL, array $data = array(), $dataName = '')
 {
     $this->mvcConfig = new ezpMvcConfiguration();
     // Load rest.ini and forces it to load its data
     $this->restINI = eZINI::instance('rest.ini');
     $this->restINI->load(true);
     $this->loadDummySettings();
     parent::__construct($name, $data, $dataName);
 }
 public function __construct()
 {
     parent::__construct();
     if (self::SORT_MODE === 'mtime') {
         // Sort by modification time to get updated tests first
         usort($this->files, array($this, 'sortTestsByMtime'));
     } else {
         // Sort it, then the file a.in will be processed first. Handy for development.
         usort($this->files, array($this, 'sortTestsByName'));
     }
 }
 public function __construct()
 {
     parent::__construct();
     $this->setName("eZSIBlockFunctionTest");
     $this->templateResource = eZTemplate::factory();
     $this->rootNamespace = '';
     $this->currentNamespace = '';
     $this->textElements = array();
     $this->functionChildren = array();
     $this->functionParameters = array();
     $this->functionPlacement = $this->initFunctionPlacement();
 }
Exemple #4
0
 public function __construct()
 {
     parent::__construct();
     $this->rootDir = sys_get_temp_dir() . '/tests/';
     $this->setName("eZDirTestOutsideRoot");
 }
Exemple #5
0
 public function __construct()
 {
     parent::__construct();
     $this->setName("eZURI Unit Tests");
 }
 public function __construct()
 {
     parent::__construct();
     $this->setName("eZXMLText Datatype Tests");
 }
 public function __construct()
 {
     parent::__construct();
     $this->setName("eZDirTestInsideRoot");
 }
 public function __construct()
 {
     parent::__construct();
     $this->setName( "eZSysTest" );
 }
Exemple #9
0
 public function __construct()
 {
     parent::__construct();
     $this->setName("eZSiteaccess");
 }
Exemple #10
0
 public function __construct()
 {
     parent::__construct();
     $this->setName("eZURI Regression Tests");
 }
 public function __construct()
 {
     parent::__construct();
     $this->setName( "ezpContentPublishingBehaviour Tests" );
 }