Interface ITestSetExecutionReportSettings
-
- All Superinterfaces:
com4j.Com4jObject
- All Known Subinterfaces:
ITestSetExecutionReportSettings2
public interface ITestSetExecutionReportSettings extends com4j.Com4jObject
Represents the notification to be sent by e-mail after a test set has completed its run.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
eMailTo()
The recipients' e-mail addresses.void
eMailTo(java.lang.String pVal)
The recipients' e-mail addresses.boolean
enabled()
Indicates if mail notification is enabled.void
enabled(boolean pVal)
Indicates if mail notification is enabled.java.lang.String
runFields()
The Run Fields included in report.void
runFields(java.lang.String pVal)
The Run Fields included in report.void
save(boolean autoPost)
Uploads the notification settings to the server.
-
-
-
Method Detail
-
eMailTo
java.lang.String eMailTo()
The recipients' e-mail addresses.
Getter method for the COM property "EMailTo"
- Returns:
- Returns a value of type java.lang.String
-
eMailTo
void eMailTo(java.lang.String pVal)
The recipients' e-mail addresses.
Setter method for the COM property "EMailTo"
- Parameters:
pVal
- Mandatory java.lang.String parameter.
-
runFields
java.lang.String runFields()
The Run Fields included in report.
Getter method for the COM property "RunFields"
- Returns:
- Returns a value of type java.lang.String
-
runFields
void runFields(java.lang.String pVal)
The Run Fields included in report.
Setter method for the COM property "RunFields"
- Parameters:
pVal
- Mandatory java.lang.String parameter.
-
enabled
boolean enabled()
Indicates if mail notification is enabled.
Getter method for the COM property "Enabled"
- Returns:
- Returns a value of type boolean
-
enabled
void enabled(boolean pVal)
Indicates if mail notification is enabled.
Setter method for the COM property "Enabled"
- Parameters:
pVal
- Mandatory boolean parameter.
-
save
void save(@DefaultValue("-1") boolean autoPost)
Uploads the notification settings to the server.
- Parameters:
autoPost
- Optional parameter. Default value is false
-
-