className = $className; } /** * @return string */ public function getClassName() { return $this->className; } /** * @param string */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * @param string */ public function setTestSuiteName($testSuiteName) { $this->testSuiteName = $testSuiteName; } /** * @return string */ public function getTestSuiteName() { return $this->testSuiteName; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(TestCaseReference::class, 'Google_Service_ToolResults_TestCaseReference');