Package net.thucydides.core.reports
Interface JiraUpdaterService
public interface JiraUpdaterService
-
Method Summary
Modifier and Type Method Description java.util.List<TestOutcomeSummary>updateJiraForTestResultsFrom(java.lang.String outcomeDirectory)Loads test results from outcome directory and updates Jira comments and workflow.java.util.List<TestOutcomeSummary>updateJiraForTestResultsFrom(java.lang.String outcomeDirectory, java.lang.String outcomesNameFilter)Loads test results from outcome directory (matching the given regular expression filter for TestOutcomes names) and updates Jira comments and workflow.
-
Method Details
-
updateJiraForTestResultsFrom
java.util.List<TestOutcomeSummary> updateJiraForTestResultsFrom(java.lang.String outcomeDirectory) throws java.io.IOExceptionLoads test results from outcome directory and updates Jira comments and workflow.- Parameters:
outcomeDirectory- - test outcome directory.- Throws:
java.io.IOException
-
updateJiraForTestResultsFrom
java.util.List<TestOutcomeSummary> updateJiraForTestResultsFrom(java.lang.String outcomeDirectory, java.lang.String outcomesNameFilter) throws java.io.IOExceptionLoads test results from outcome directory (matching the given regular expression filter for TestOutcomes names) and updates Jira comments and workflow.- Parameters:
outcomeDirectory- test outcome directory.outcomesNameFilter- - regular expression filter for the outcomes names.- Throws:
java.io.IOException
-