public enum SystemProperties extends Enum<SystemProperties>
| Enum Constant and Description |
|---|
GENERATE_REPORT
System Property that a user can set at runtime using the -D option,
to specify whether reports should be generated or not.
|
PARALLEL_THREAD_COUNT
System property to specify the number of threads to run in parallel
|
REPEAT_COUNT
System Property to be used for specifying the number of times
a test should be repeated
|
REPORT_FORMAT
System Property that a user can set at runtime using the -D option,
to specify the report format.
|
REPORT_LOCATION
System Property that a user can set at runtime using the -D option,
to specify the report location.
|
REPORT_PACKAGES
System Property that a user can set at runtime using the -D option,
to specify the report package.
|
REPORT_TYPE
System Property that a user can set at runtime using the -D option,
to specify the report type (main report, method duration report)
|
TEST_DATA_FILES
System Property that a user can set at runtime using the -D option, to provide
test data file paths at runtime.
|
WRITE_DATA
System property to specify whethere the data should be written back to the file or not
|
| Modifier and Type | Method and Description |
|---|---|
String |
getValue()
Get the system property value
|
static SystemProperties |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SystemProperties[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SystemProperties TEST_DATA_FILES
public static final SystemProperties GENERATE_REPORT
public static final SystemProperties REPORT_FORMAT
public static final SystemProperties REPORT_TYPE
public static final SystemProperties REPORT_LOCATION
public static final SystemProperties REPORT_PACKAGES
public static final SystemProperties REPEAT_COUNT
public static final SystemProperties PARALLEL_THREAD_COUNT
public static final SystemProperties WRITE_DATA
public static SystemProperties[] values()
for (SystemProperties c : SystemProperties.values()) System.out.println(c);
public static SystemProperties valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullpublic String getValue()
Copyright © 2014. All rights reserved.