1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 package net.sf.jameleon.ui;
20
21 public class EnvironmentConfigPanel extends AbstractConfigPanel{
22
23 public void registerFields(){
24 addFieldProperty(true, "Test Environment:", "testEnvironment", "", "The name of the environment the test case is to be executed against. Some examples of testEnvironment are: prod, beta, dev, and localhost.");
25 addFieldProperty(true, "Organization:", "organization", "", "The name of the organization to run the test scripts against");
26 addFieldProperty(true, "Function Delay:", "functionDelay", "", "This is a numerical setting in milliseconds. Whatever this is set to, each functional point will wait that period after execution.");
27 addFieldProperty(false, "Trace:", "trace", "false", "Print out execution of most tags in a test case to std out. This is very helpful for debugging which functional point is getting executed and when");
28 addFieldProperty(true, "Store State Event:", "storeStateEvent", "", "Sets the event which must occur in order for the application's state to be recorded");
29 addFieldProperty(true, "Test Case Listeners:", "TestCaseListeners", "", "To hook into the Jameleon Test Case Event Model, define a space-separated list of classes that implement net.sf.jameleon.event.TestCaseListener");
30 addFieldProperty(false, "Execute Test Case:", "executeTestCase", "true", "Tells Jameleon to execute the code in each tag or to do a dry run. The default is true");
31 addFieldProperty(false, "Fail on no CSV File:", "failOnCSVFileNotFound", "true", "If set to false, and an error due to the CSV file not being found happens, then the test case will not get logged");
32 addFieldProperty(false, "Generate Docs:", "genTestCaseDocs", "true", "Generates the test case documentation and creates links on the TestResults.html page for each test case name");
33 addFieldProperty(false, "Enable SSL Cert Check:", "enableSslCertCheck", "true", "This is an old setting for the HttpUnit plug-in. We need to change this to be HttpUnit specific.");
34 }
35
36
37 }