Interface IReleaseManagementInfo
-
- All Superinterfaces:
com4j.Com4jObject
public interface IReleaseManagementInfo extends com4j.Com4jObject
Represents a release or cycle.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
daysLeft()
Returns the number of days remaining in the cycle or release.int
duration()
Returns the duration of the cycle or release.boolean
started()
Checks if the cycle or release has begun.int
totalTestInstances()
Returns the total number of test instances in this cycle or release.int
unexecutedTestInstances()
Returns the number of unexecuted test instances in this cycle or release.
-
-
-
Method Detail
-
duration
int duration()
Returns the duration of the cycle or release.
Getter method for the COM property "Duration"
- Returns:
- Returns a value of type int
-
daysLeft
int daysLeft()
Returns the number of days remaining in the cycle or release.
Getter method for the COM property "DaysLeft"
- Returns:
- Returns a value of type int
-
totalTestInstances
int totalTestInstances()
Returns the total number of test instances in this cycle or release.
Getter method for the COM property "TotalTestInstances"
- Returns:
- Returns a value of type int
-
unexecutedTestInstances
int unexecutedTestInstances()
Returns the number of unexecuted test instances in this cycle or release.
Getter method for the COM property "UnexecutedTestInstances"
- Returns:
- Returns a value of type int
-
started
boolean started()
Checks if the cycle or release has begun.
Getter method for the COM property "Started"
- Returns:
- Returns a value of type boolean
-
-