Lines Matching refs:name

55   $name = $options->getOption('c')."_".$options->getOption('m');
68 $name = $options->getOption('f');
69 $function = new gtFunction($name);
86 gtTestCaseWriter::write($name, $testCase->toString(), 'b');
99 gtTestCaseWriter::write($name, $testCase->toString(), 'e');
119 gtTestCaseWriter::write($name, $test, 'v', $count);
136 * Set the name of the name of the function
163 * Return the name of the function
184 * @param string $name
187 public static function get($name) {
188 $filename = dirname(__FILE__) . '/texts/' . $name . '.txt';
191 throw new LogicException('The text ' . $name . ' does not exist');
246 The method name is not a valid PHP method name.
250 The class name is not a valid PHP class name.
261 -c class name .....................Name of class, eg DOMDocument
262 -m method name ....................Name of method, eg createAttribute
271 You have given a class name but not supplied a method name to test.
272 The method name is required.
275 Please supply a function or method name to be tested.
278 The function name is not a valid PHP function name.
293 * @param string $name
296 public static function get($name) {
298 $filename = dirname(__FILE__) . '/codeSnippets/' . $name . '.txt';
301 throw new LogicException('The code snippet ' . $name . ' does not exist');
315 * @param string $name
319 public static function append($name, $array) {
320 $filename = dirname(__FILE__) . '/codeSnippets/' . $name . '.txt';
323 throw new LogicException('The code snippet ' . $name . ' does not exist');
403 * @param string $class Class name to autoload
514 * Check that the function name is valid
601 * Check that the method name is valid
628 * Check that the class name is valid
810 public static function write($name, $string, $type, $count = 0) {
812 $fileName = $name."_basic.phpt";
816 $fileName = $name."_error.phpt";
820 $fileName = $name."_variation".$count.".phpt";
900 * Return the name of the method
910 * Return the name of the class
949 foreach( $this->constructorArgumentNames as $name) {
950 $this->constructorInitialisationStatements[] = "\$".$name." = ";
1184 foreach( $this->mandatoryArgumentNames as $name) {
1185 $this->initialisationStatements[] = "\$".$name." = ";
1189 foreach( $this->optionalArgumentNames as $name) {
1190 $this->initialisationStatements[] = "\$".$name." = ";
1595 * Set the function name
1655 * Set the function name
1817 * Set the method name