| Modifier and Type | Class and Description |
|---|---|
class |
TestRail.Plans.Add |
class |
TestRail.Plans.AddEntry |
class |
TestRail.Plans.Close |
class |
TestRail.Plans.Delete |
class |
TestRail.Plans.DeleteEntry |
class |
TestRail.Plans.Get |
class |
TestRail.Plans.List |
class |
TestRail.Plans.Update |
class |
TestRail.Plans.UpdateEntry |
| Constructor and Description |
|---|
Plans() |
| Modifier and Type | Method and Description |
|---|---|
TestRail.Plans.Add |
add(int projectId,
Plan plan)
Creates a new test plan.
|
TestRail.Plans.AddEntry |
addEntry(int planId,
Plan.Entry entry)
Adds one or more new test runs to a test plan.
|
TestRail.Plans.Close |
close(int planId)
Closes an existing test plan and archives its test runs & results.
|
TestRail.Plans.Delete |
delete(int planId)
Deletes an existing test plan.
|
TestRail.Plans.DeleteEntry |
deleteEntry(int planId,
int entryId)
Deletes one or more existing test runs from a plan.
|
TestRail.Plans.Get |
get(int planId)
Returns an existing test plan.
|
TestRail.Plans.List |
list(int projectId)
Returns a list of test plans for a project.
|
TestRail.Plans.Update |
update(Plan plan)
Updates an existing test plan.
|
TestRail.Plans.UpdateEntry |
updateEntry(int planId,
Plan.Entry entry)
Updates one or more existing test runs in a plan.
|
@Generated(value="lombok") public Plans()
public TestRail.Plans.Get get(int planId)
planId - the ID of the test planIllegalArgumentException - if planId is not positivepublic TestRail.Plans.List list(int projectId)
projectId - the ID of the project to get the plans forIllegalArgumentException - if projectId is not positivepublic TestRail.Plans.Add add(int projectId, @NonNull Plan plan)
projectId - the ID of the project to add the plans toplan - the test plan to be addedIllegalArgumentException - if projectId is not positiveNullPointerException - if plan is nullpublic TestRail.Plans.Update update(@NonNull Plan plan)
plan - the test plan to be updatedNullPointerException - if plan is nullpublic TestRail.Plans.Close close(int planId)
planId - the ID of the test plan to be closedIllegalArgumentException - if planId is not positivepublic TestRail.Plans.Delete delete(int planId)
planId - the ID of the test plan to be deletedIllegalArgumentException - if planId is not positivepublic TestRail.Plans.AddEntry addEntry(int planId, @NonNull Plan.Entry entry)
planId - the ID of the test plan to add the entry toentry - the plan entry to be addedIllegalArgumentException - if planId is not positiveNullPointerException - if any argument is nullpublic TestRail.Plans.UpdateEntry updateEntry(int planId, @NonNull Plan.Entry entry)
planId - the ID of the test plan to update the entry inentry - the plan entry to be updatedIllegalArgumentException - if planId is not positiveNullPointerException - if any argument is nullpublic TestRail.Plans.DeleteEntry deleteEntry(int planId, int entryId)
planId - the ID of the test plan to delete entry fromentryId - the ID of the plan entry to be deletedIllegalArgumentException - if any argument is not positiveCopyright © 2017. All rights reserved.