Lines Matching refs:this
13 $this->optionalSections = $opt;
23 $this->subject = $function;
24 $this->argumentNumber = $argumentNumber;
25 $this->variationData = $variationData;
35 $this->constructCommonHeaders();
37 $this->addVariationEcho();
39 $this->constructSubjectCalls();
41 $this->constructCommonClosing();
45 $this->testCase[] = "--TEST--";
46 …$this->testCase[] = "Test function ".$this->subject->getName()."() by substituting argument ".$thi…
51 $this->testCase = gtCodeSnippet::append('loopStart', $this->testCase);
54 $argumentList = explode(",", $this->subject->getMaximumArgumentList());
55 $argumentList[$this->argumentNumber -1 ] = "\$var ";
59 $this->testCase[] = " var_dump(".$this->subject->getName()."( ".$list." ) );";
60 $this->testCase = gtCodeSnippet::append('loopClose', $this->testCase);