public class IssueUtils
extends java.lang.Object
Issue objects from different annotation sources taking into account test name and parameters
filtering.| Modifier and Type | Method and Description |
|---|---|
static com.epam.ta.reportportal.ws.model.issue.Issue |
createIssue(Issue[] issues,
java.lang.String testName,
java.util.List<com.epam.ta.reportportal.ws.model.ParameterResource> parameters)
Creates
Issue object from the provided Issue annotation array if it is not null or
empty and at least one of them suits corresponding TestFilter filters by provided test name
and parameters. |
static com.epam.ta.reportportal.ws.model.issue.Issue |
createIssue(Issues issues,
java.lang.String testName,
java.util.List<com.epam.ta.reportportal.ws.model.ParameterResource> parameters)
Creates
Issue object from the provided Issues annotation if it is not null and at least one of the annotations in the
value array suits corresponding TestFilter filters by provided test name and parameters. |
static com.epam.ta.reportportal.ws.model.issue.Issue |
createIssue(Issue issue,
java.lang.String testName,
java.util.List<com.epam.ta.reportportal.ws.model.ParameterResource> parameters)
Creates
Issue object from the provided Issue annotation if it is not null and
passed TestFilter filters suit the provided test name and parameters. |
static com.epam.ta.reportportal.ws.model.issue.Issue |
createIssue(java.util.List<Issue> issues,
java.lang.String testName,
java.util.List<com.epam.ta.reportportal.ws.model.ParameterResource> parameters)
Creates
Issue object from the provided list of Issue annotations if it is not
empty and at least one of them suits corresponding TestFilter filters by provided test name
and parameters. |
@Nullable
public static com.epam.ta.reportportal.ws.model.issue.Issue createIssue(@Nullable
Issue issue,
@Nonnull
java.lang.String testName,
@Nonnull
java.util.List<com.epam.ta.reportportal.ws.model.ParameterResource> parameters)
Issue object from the provided Issue annotation if it is not null and
passed TestFilter filters suit the provided test name and parameters.issue - the annotationtestName - test nameparameters - test parameters@Nullable
public static com.epam.ta.reportportal.ws.model.issue.Issue createIssue(@Nullable
java.util.List<Issue> issues,
@Nonnull
java.lang.String testName,
@Nonnull
java.util.List<com.epam.ta.reportportal.ws.model.ParameterResource> parameters)
Issue object from the provided list of Issue annotations if it is not
empty and at least one of them suits corresponding TestFilter filters by provided test name
and parameters. The first suitable annotation will be taken to create the result object.issues - the list of annotationstestName - test nameparameters - test parameters@Nullable
public static com.epam.ta.reportportal.ws.model.issue.Issue createIssue(@Nullable
Issue[] issues,
@Nonnull
java.lang.String testName,
@Nonnull
java.util.List<com.epam.ta.reportportal.ws.model.ParameterResource> parameters)
Issue object from the provided Issue annotation array if it is not null or
empty and at least one of them suits corresponding TestFilter filters by provided test name
and parameters. The first suitable annotation will be taken to create the result object.issues - the array of annotationstestName - test nameparameters - test parameters@Nullable
public static com.epam.ta.reportportal.ws.model.issue.Issue createIssue(@Nullable
Issues issues,
@Nonnull
java.lang.String testName,
@Nonnull
java.util.List<com.epam.ta.reportportal.ws.model.ParameterResource> parameters)
Issue object from the provided Issues annotation if it is not null and at least one of the annotations in the
value array suits corresponding TestFilter filters by provided test name and parameters.
The first suitable annotation will be taken to create the result object.issues - the annotationtestName - test nameparameters - test parameters