elapsedTime = $elapsedTime; } /** * @return Duration */ public function getElapsedTime() { return $this->elapsedTime; } /** * @param Timestamp */ public function setEndTime(Timestamp $endTime) { $this->endTime = $endTime; } /** * @return Timestamp */ public function getEndTime() { return $this->endTime; } /** * @param string */ public function setSkippedMessage($skippedMessage) { $this->skippedMessage = $skippedMessage; } /** * @return string */ public function getSkippedMessage() { return $this->skippedMessage; } /** * @param StackTrace[] */ public function setStackTraces($stackTraces) { $this->stackTraces = $stackTraces; } /** * @return StackTrace[] */ public function getStackTraces() { return $this->stackTraces; } /** * @param Timestamp */ public function setStartTime(Timestamp $startTime) { $this->startTime = $startTime; } /** * @return Timestamp */ public function getStartTime() { return $this->startTime; } /** * @param string */ public function setStatus($status) { $this->status = $status; } /** * @return string */ public function getStatus() { return $this->status; } /** * @param string */ public function setTestCaseId($testCaseId) { $this->testCaseId = $testCaseId; } /** * @return string */ public function getTestCaseId() { return $this->testCaseId; } /** * @param TestCaseReference */ public function setTestCaseReference(TestCaseReference $testCaseReference) { $this->testCaseReference = $testCaseReference; } /** * @return TestCaseReference */ public function getTestCaseReference() { return $this->testCaseReference; } /** * @param ToolOutputReference[] */ public function setToolOutputs($toolOutputs) { $this->toolOutputs = $toolOutputs; } /** * @return ToolOutputReference[] */ public function getToolOutputs() { return $this->toolOutputs; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(TestCase::class, 'Google_Service_ToolResults_TestCase');