Skip to main content
summaryrefslogtreecommitdiffstats
blob: ca9429f816c9147188ef3cd8990843f57f2f6990 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package org.eclipse.osee.ote.core.framework.command;

public enum RunTestsKeys {
   distributionStatement,
   executablePath,
   classpath,
   version_repositoryType,
   version_location,
   version_revision,
   version_lastAuthor,
   version_lastModificationDate,
   version_modifiedFlag,
   serverOutfilePath,
   executableOutputPath,
   executableDebug,
   testClass,
   clientOutfilePath,
   testVersion,
   serverOutfileFolderOverride,
   executablePathsArray,
   executableArg1Array,
   executableArg2Array,
   spare1,
   batchFailAbortMode,
   batchmode,
   batchFailPauseMode;
   
}

Back to the top