Lines Matching refs:subject

1080    * Set the argument list to call the subject with. Adds one extra argument.
1136 * Construct the list of all possible ways to call the subject (function or method)
1266 $this->subject = $method;
1285 …$this->testCase[] = "Test class ".$this->subject->getClassName()." method ".$this->subject->getNa…
1290 $lists = $this->subject->getValidArgumentLists();
1293 $this->testCase[] = "var_dump( \$class->".$this->subject->getName()."( ".$list." ) );";
1361 * The subject of the test, may be either a function (gtFunction) or a method (gtMethod)
1365 protected $subject;
1462 $conStatements = $this->subject->getConstructorInitStatements();
1474 $constructorList = $this->subject->getConstructorArgumentList();
1475 $this->testCase[] = "\$class = new ".$this->subject->getClassName()."( ".$constructorList." );";
1485 $statements = $this->subject->getInitialisationStatements();
1600 $this->subject = $function;
1622 …$this->testCase[] = "Test function ".$this->subject->getName()."() by calling it with its expected…
1631 $lists = $this->subject->getValidArgumentLists();
1636 $this->testCase[] = "var_dump(".$this->subject->getName()."( ".$list." ) );";
1660 $this->subject = $function;
1682 …$this->testCase[] = "Test function ".$this->subject->getName()."() by calling it more than or less…
1687 $list = $this->subject->getExtraArgumentList();
1689 $this->testCase[] = "var_dump(".$this->subject->getName()."( ".$list." ) );";
1691 $list = $this->subject->getShortArgumentList();
1693 $this->testCase[] = "var_dump(".$this->subject->getName()."( ".$list." ) );";
1720 $this->subject = $function;
1743 …$this->testCase[] = "Test function ".$this->subject->getName()."() by substituting argument ".$thi…
1751 $argumentList = explode(",", $this->subject->getMaximumArgumentList());
1756 $this->testCase[] = " var_dump(".$this->subject->getName()."( ".$list." ) );";
1822 $this->subject = $method;
1845 …$this->testCase[] = "Test class ".$this->subject->getClassName()." method ".$this->subject->getNam…
1851 $list = $this->subject->getExtraArgumentList();
1853 $this->testCase[] = "var_dump(".$this->subject->getName()."( ".$list." ) );";
1855 $list = $this->subject->getShortArgumentList();
1857 $this->testCase[] = "var_dump(".$this->subject->getName()."( ".$list." ) );";
1869 protected $subject;
1978 $statements = $this->subject->getInitialisationStatements();
2011 protected $subject;
2028 $this->subject = $method;
2053 …$this->testCase[] = "Test class ".$this->subject->getClassName()." method ".$this->subject->getNam…
2059 $argumentList = explode(",", $this->subject->getMaximumArgumentList());
2064 $this->testCase[] = " var_dump(\$class->".$this->subject->getName()."( ".$list." ) );";