summaryrefslogtreecommitdiff
path: root/qadevOOo/runner/lib/TestParameters.java
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2005-02-02 12:57:05 +0000
committerRüdiger Timm <rt@openoffice.org>2005-02-02 12:57:05 +0000
commit545e0d19a8fac076edf6b05d30f779ac6b21290d (patch)
tree7f445a484dfccc7b0092e3a735592896fa9a6682 /qadevOOo/runner/lib/TestParameters.java
parent35d5e5d6fef510c4c63a8202f4e9a0002736bff8 (diff)
INTEGRATION: CWS imprec01 (1.6.2); FILE MERGED
2004/12/20 11:30:02 cn 1.6.2.1: #i39323# parameter timeOut defaulted
Diffstat (limited to 'qadevOOo/runner/lib/TestParameters.java')
-rw-r--r--qadevOOo/runner/lib/TestParameters.java15
1 files changed, 11 insertions, 4 deletions
diff --git a/qadevOOo/runner/lib/TestParameters.java b/qadevOOo/runner/lib/TestParameters.java
index c9752d7fcf26..ed3d68d0aed6 100644
--- a/qadevOOo/runner/lib/TestParameters.java
+++ b/qadevOOo/runner/lib/TestParameters.java
@@ -2,9 +2,9 @@
*
* $RCSfile: TestParameters.java,v $
*
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
- * last change: $Author: rt $ $Date: 2004-12-10 17:01:01 $
+ * last change: $Author: rt $ $Date: 2005-02-02 13:57:05 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -186,6 +186,12 @@ public class TestParameters extends Hashtable {
*/
public Integer TimeOut = new Integer(30000);
+ /*
+ * This parameter contains the timeout used<br>
+ * by the complex tests
+ */
+ public Integer ThreadTimeOut = new Integer(30000);
+
/**
* Wraper around "get()" with some debug output
* @param key A key of this table.
@@ -271,14 +277,15 @@ public class TestParameters extends Hashtable {
put(PropertyName.CONNECTION_STRING,ConnectionString);
put(PropertyName.TEST_BASE,TestBase);
put(PropertyName.TEST_DOCUMENT_PATH,TestDocumentPath);
- put(PropertyName.LOGGING_IS_ACTIVE,new Boolean(LoggingIsActive));
- put(PropertyName.DEBUG_IS_ACTIVE,new Boolean(DebugIsActive));
+ put(PropertyName.LOGGING_IS_ACTIVE,Boolean.valueOf(LoggingIsActive));
+ put(PropertyName.DEBUG_IS_ACTIVE,Boolean.valueOf(DebugIsActive));
put(PropertyName.OUT_PRODUCER,OutProducer);
put(PropertyName.SHORT_WAIT,new Integer(ShortWait));
put(PropertyName.OFFICE_PROVIDER,OfficeProvider);
put(PropertyName.LOG_WRITER,LogWriter);
put(PropertyName.APP_EXECUTION_COMMAND,AppExecutionCommand);
put(PropertyName.TIME_OUT,TimeOut);
+ put(PropertyName.THREAD_TIME_OUT,ThreadTimeOut);
// get the operating system
put(PropertyName.OPERATING_SYSTEM, getSOCompatibleOSName());