Lines Matching refs:mandatoryArgumentNames
5 protected $mandatoryArgumentNames; variable in gtTestSubject
22 return $this->mandatoryArgumentNames;
46 if(count ($this->mandatoryArgumentNames) > 0) {
47 for( $i = 0; $i < count( $this->mandatoryArgumentNames ); $i++) {
48 $this->extraArgumentList .= "\$".$this->mandatoryArgumentNames[$i].", ";
78 if(count ($this->mandatoryArgumentNames) > 0) {
79 for( $i = 0; $i < count( $this->mandatoryArgumentNames ) - 1; $i++) {
80 $this->shortArgumentList .= "\$".$this->mandatoryArgumentNames[$i].", ";
103 if(count ($this->mandatoryArgumentNames) > 0) {
104 for( $i = 0; $i < count( $this->mandatoryArgumentNames ); $i++) {
105 $this->allowedArgumentLists[0] .= "\$".$this->mandatoryArgumentNames[$i].", ";
145 if(count ($this->mandatoryArgumentNames) > 0) {
146 foreach( $this->mandatoryArgumentNames as $name) {