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); }