Class TestCaseExecutionResult
This class contains the result of executing a test case.
public class TestCaseExecutionResult
- Inheritance
-
TestCaseExecutionResult
- Inherited Members
Properties
LastFailureMessage
This is the last failure message encountered during test case execution if it did not execute successfully.
public string LastFailureMessage { get; set; }
Property Value
LogFilePath
The path to the log file containing more details about the test case. The log file may contain information about other test cases as well.
public string LogFilePath { get; set; }
Property Value
Success
This indicates whether the test case executed successfully.
public bool Success { get; set; }