public function __construct($testName, $directory, $arkivstrukturFilename, $testResultsHandler, $testProperty)
 {
     parent::__construct($testName, $testProperty);
     $this->directory = $directory;
     $this->testResultsHandler = $testResultsHandler;
     $this->arkivstrukturFilename = $arkivstrukturFilename;
 }
 function __construct($testName, $numberFromArkivUttrekk, $numberFromParsingArkivstruktur, $noark5File, $type, $testProperty)
 {
     parent::__construct($testName, $testProperty);
     $this->numberFromArkivUttrekk = $numberFromArkivUttrekk;
     $this->numberFromParsingArkivstruktur = $numberFromParsingArkivstruktur;
     $this->noark5File = $noark5File;
     $this->type = $type;
 }
Exemplo n.º 3
0
 function __construct($testName, $fileName, $directory, $checksumAlgorithm, $checksumValue, $testProperty)
 {
     parent::__construct($testName, $testProperty);
     $this->fileName = $fileName;
     $this->directory = $directory;
     $this->checksumAlgorithm = $checksumAlgorithm;
     $this->checksumValue = $checksumValue;
 }
Exemplo n.º 4
0
 public function __construct()
 {
     parent::__construct();
     $this->m = "hello ";
     require 'route.php';
     new Route();
     Route::test();
 }
Exemplo n.º 5
0
 function __construct()
 {
     parent::__construct();
     self::$count++;
     if (!self::$initiated) {
         DatabaseManager::AddConnection($this->dbConfig(), "test");
         DatabaseManager::$DefaultIndex = "test";
         self::$initiated = true;
     }
 }
Exemplo n.º 6
0
	public function __construct($valor = NULL)
	{
		//INVOCO AL CONSTRUCTOR PADRE
		parent::__construct();
		
		if($valor != NULL)
			$this->atributoPropio = $valor;
		else
			$this->atributoPropio = "valor propio";
	}
Exemplo n.º 7
0
 function __construct($testName, $fileName, $directory, $checksumAlgorithm, $checksumValue, $testProperty)
 {
     parent::__construct($testName, $testProperty);
     $this->fileName = $fileName;
     $this->directory = $directory;
     $this->checksumAlgorithm = $checksumAlgorithm;
     $this->checksumValue = $checksumValue;
     $this->logger->trace('Creating an instance of [' . get_class($this) . '] with the following values');
     $this->logger->trace('fileName [' . $this->fileName . ']');
     $this->logger->trace('directory [' . $this->directory . ']');
     $this->logger->trace('checksumAlgorithm [' . $this->checksumAlgorithm . ']');
     $this->logger->trace('checksumValue [' . $this->checksumValue . ']');
 }
Exemplo n.º 8
0
 public function __construct($testName, $directory, $runDirectory, $noark5StructureFile, $testResultsHandler, $arkivUtrekk, $infoFileHandler, $testProperty)
 {
     parent::__construct($testName, $testProperty);
     $this->directory = $directory;
     $this->testResultsHandler = $testResultsHandler;
     $this->arkivUtrekk = $arkivUtrekk;
     $this->infoFileHandler = $infoFileHandler;
     if (is_null($noark5StructureFile) == false) {
         $this->standardExtractionContents = simplexml_load_file($noark5StructureFile);
     } else {
         $this->standardExtractionContents = simplexml_load_file($runDirectory . DIRECTORY_SEPARATOR . Constants::LOCATION_OF_NOARK5_V31_STRUCTURE_FILE);
     }
     $this->arkivstrukturFilename = 'arkivstruktur.xml';
     $this->numberOfDocumentsProcessed = -1;
 }
Exemplo n.º 9
0
 public function __construct($testName, $directory, $testResultsHandler, $infoFilename, $noark5StructureFile, $testsToRun, $testProperty)
 {
     parent::__construct($testName, $testProperty);
     $this->directory = $directory;
     $this->testResultsHandler = $testResultsHandler;
     // A list of files we expect to see in the directory and a list of xml-files to validate
     if ($noark5StructureFile !== null) {
         $this->standardExtractionContents = simplexml_load_file($noark5StructureFile);
     } else {
         $this->standardExtractionContents = simplexml_load_file(Constants::LOCATION_OF_NOARK5_V31_STRUCTURE_FILE);
     }
     if ($this->testsToRun === null) {
         $this->testsToRun = array();
         $this->setAllTestsRunnable();
     }
     $this->processArkivUttrekk();
     $this->processInfoFile($infoFilename);
     $this->arkivstrukturFilename = $this->arkivUttrekkDetails->getArkivstruktur()->getFilename();
 }
 function __construct($testName, $directory, $documentListHandler, $testProperty)
 {
     parent::__construct($testName, $testProperty);
     $this->directory = $directory;
     $this->documentListHandler = $documentListHandler;
 }
Exemplo n.º 11
0
 function __construct()
 {
     echo __METHOD__ . "()\n";
     parent::__construct();
 }
Exemplo n.º 12
0
 function __construct($testName, $directory, $fileName, $testProperty)
 {
     parent::__construct($testName, $testProperty);
     $this->fileName = $fileName;
     $this->directory = $directory;
 }
Exemplo n.º 13
0
 function __construct()
 {
     $this->waiting_procs = array();
     $this->running_procs = array();
     parent::__construct();
 }
Exemplo n.º 14
0
 function __construct()
 {
     $this->waiting_procs = array();
     $this->running_procs = array();
     $this->reductions = array();
     $this->reduction_result = array();
     $this->is_special_reduction = array();
     parent::__construct();
 }
 /**
  *
  * @param
  *            $testName
  *
  * @param
  *            $testProperty
  *
  */
 public function __construct($testName, $testProperty)
 {
     parent::__construct($testName, $testProperty);
 }