Lines Matching refs:className
98 var $className; variable in PHPUnit_Skeleton
129 * @param string $className
134 …function PHPUnit_Skeleton($className, $classPath, $includeParents = FALSE, $includePrivate = TRUE)… argument
137 $this->className = $className;
187 $classMethods = get_class_methods($this->className);
191 $parentMethods = get_class_methods(get_parent_class($this->className));
207 if (strcasecmp($this->className, $method) !== 0) {
240 " * PHPUnit test case for " . $this->className . "\n" .
254 "class " . $this->className . "Test extends PHPUnit_TestCase {\n\n" .
255 " var \$" . $this->className . ";\n\n";
274 " function " . $this->className . "Test(\$name)\n" .
307 " \$this->" . $this->className . " =& new " . $this->className . "(PARAM);\n" .
314 " unset(\$this->" . $this->className . ");\n" .
335 " \$result = \$this->" . $this->className . "->" . $methodName . "(PARAM);\n" .
375 "\$suite = new PHPUnit_TestSuite('" . $this->className . "Test');\n" .
403 $fp = fopen($destination . $this->className . 'Test.php', 'w');