From de38e5ad35895caff54edf0152cf9cc0d438bc42 Mon Sep 17 00:00:00 2001 From: jonawals Date: Thu, 27 May 2021 11:46:18 +0100 Subject: [PATCH] Add missing API comments --- .../Code/Source/TestEngine/TestImpactTestEngineJobFailure.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Code/Tools/TestImpactFramework/Runtime/Code/Source/TestEngine/TestImpactTestEngineJobFailure.h b/Code/Tools/TestImpactFramework/Runtime/Code/Source/TestEngine/TestImpactTestEngineJobFailure.h index aef4e962c5..8e88571957 100644 --- a/Code/Tools/TestImpactFramework/Runtime/Code/Source/TestEngine/TestImpactTestEngineJobFailure.h +++ b/Code/Tools/TestImpactFramework/Runtime/Code/Source/TestEngine/TestImpactTestEngineJobFailure.h @@ -20,10 +20,16 @@ namespace TestImpact { + //! Checks for known test instrumentation error return codes and returns the corresponding client test run result or empty. AZStd::optional CheckForKnownTestInstrumentErrorCode(ReturnCode returnCode); + + //! Checks for known test runner error return codes and returns the corresponding client test run result or empty. AZStd::optional CheckForKnownTestRunnerErrorCode(ReturnCode returnCode); + + //! Checks for known test library error return codes and returns the corresponding client test run result or empty. AZStd::optional CheckForKnownTestLibraryErrorCode(ReturnCode returnCode); + //! Checks for all known error return codes and returns the corresponding client test run result or empty. AZStd::optional CheckForAnyKnownErrorCode(ReturnCode returnCode); }