Modifiers | Name | Description |
---|---|---|
static java.lang.String |
MISSING_ENDPOINT_MESSAGE |
Type Params | Return Type | Name and description |
---|---|---|
|
static boolean |
checkEndpoint(java.util.List<Interface> interfaces) Checks that the endpoint is set for all the requests in the list of interfaces. |
|
static boolean |
checkEndpoint(Interface anInterface) Checks that the endpoint is set for all the requests in the interface. |
|
static boolean |
checkEndpoint(TestCase testCase) Checks that the endpoint is set for all the requests in the testCase. |
|
static boolean |
checkEndpoint(ModelItem modelItem) Checks that the endpoint is set for all the requests in the modelItem. |
|
static java.lang.String |
checkEndpoint(Request request, java.lang.String endpoint) Checks that the endpoint is set for the request. |
|
static boolean |
checkEndpointsForLoadTest(LoadTestModelItem loadTest, java.util.List<TestCase> targetTestCases) |
|
static java.util.List<AbstractHttpRequest> |
getRequestsWithoutEndpoints(ModelItem modelItem) Returns the list of requests without endpoints. |
Methods inherited from class | Name |
---|---|
class java.lang.Object |
java.lang.Object#wait(long), java.lang.Object#wait(long, int), java.lang.Object#wait(), java.lang.Object#equals(java.lang.Object), java.lang.Object#toString(), java.lang.Object#hashCode(), java.lang.Object#getClass(), java.lang.Object#notify(), java.lang.Object#notifyAll() |
Checks that the endpoint is set for all the requests in the list of interfaces. Will prompt for endpoint if it is not set for some of the requests.
interfaces
- the list of interfaces for which to check if endpoint is set.Checks that the endpoint is set for all the requests in the interface. Will prompt for endpoint if it is not set for some of the requests
anInterface
- the interface for which to check if endpoint is setChecks that the endpoint is set for all the requests in the testCase. Will prompt for endpoint if it is not set for some of the requests
testCase
- the testCase for which to check if endpoint is setChecks that the endpoint is set for all the requests in the modelItem. Will prompt for endpoint if it is not set for some of the requests
modelItem
- the modelItem for which to check if endpoint is setChecks that the endpoint is set for the request. Will prompt for endpoint if it is not set for the request.
request
- the request for which to check if endpoint is setReturns the list of requests without endpoints.
modelItem
- is a container of requests (can be test case, test suite or project)