Uses of Class
com.consol.citrus.TestResult
-
Packages that use TestResult Package Description com.consol.citrus com.consol.citrus.context com.consol.citrus.report -
-
Uses of TestResult in com.consol.citrus
Methods in com.consol.citrus that return TestResult Modifier and Type Method Description static TestResultTestResult. failed(String name, String className, String errorMessage)Create new test result for failed execution.static TestResultTestResult. failed(String name, String className, Throwable cause)Create new test result for failed execution.static TestResultTestResult. failed(String name, String className, Throwable cause, Map<String,Object> parameters)Create new test result with parameters for failed execution.TestResultTestCase. getTestResult()Retrieve test result.static TestResultTestResult. skipped(String name, String className)Create new test result for skipped test.static TestResultTestResult. skipped(String name, String className, Map<String,Object> parameters)Create new test result with parameters for skipped test.static TestResultTestResult. success(String name, String className)Create new test result for successful execution.static TestResultTestResult. success(String name, String className, Map<String,Object> parameters)Create new test result with parameters for successful execution.TestResultTestResult. withFailureStack(String failureStack)Sets failure stack trace information in fluent API.TestResultTestResult. withFailureType(String failureType)Sets failure type information in fluent API.Methods in com.consol.citrus with parameters of type TestResult Modifier and Type Method Description voidTestCase. setTestResult(TestResult testResult)Sets the test result from outside. -
Uses of TestResult in com.consol.citrus.context
Methods in com.consol.citrus.context with parameters of type TestResult Modifier and Type Method Description booleanTestContext. isSuccess(TestResult testResult)Checks test result success in combination with this context exception state. -
Uses of TestResult in com.consol.citrus.report
Methods in com.consol.citrus.report that return types with arguments of type TestResult Modifier and Type Method Description List<TestResult>TestResults. asList()Provides access to results as list generated from synchronized result list.Methods in com.consol.citrus.report with parameters of type TestResult Modifier and Type Method Description booleanTestResults. addResult(TestResult result)Adds a test result to the result list.voidTestResults.ResultCallback. doWithResult(TestResult result)Do something with the result.
-