diff options
Diffstat (limited to 'qadevOOo')
-rw-r--r-- | qadevOOo/runner/base/java_complex.java | 22 |
1 files changed, 3 insertions, 19 deletions
diff --git a/qadevOOo/runner/base/java_complex.java b/qadevOOo/runner/base/java_complex.java index 4dbf07085e85..b5cafa1041ab 100644 --- a/qadevOOo/runner/base/java_complex.java +++ b/qadevOOo/runner/base/java_complex.java @@ -45,14 +45,6 @@ public class java_complex implements TestBase public boolean executeTest(TestParameters param) { - // is there an ini file for the complex tests defined? - String complexIniFileName = ((String) param.get("ComplexIni")); - if (complexIniFileName != null) - { - CfgParser ini = new CfgParser(complexIniFileName); - ini.getIniParameters(param); - } - // get the test job String testJob = ((String) param.get("TestJob")); @@ -69,25 +61,17 @@ public class java_complex implements TestBase */ public boolean executeTest(TestParameters param, DescEntry[] entries) { - // is there an ini file for the complex tests defined? - String complexIniFileName = ((String) param.get("ComplexIni")); - if (complexIniFileName != null) - { - CfgParser ini = new CfgParser(complexIniFileName); - ini.getIniParameters(param); - } - DynamicClassLoader dcl = new DynamicClassLoader(); ComplexTestCase testClass = null; boolean returnVal = true; // the concept of the TimeOut depends on runner logs. If the runner log, // for example to start a test method, the timeout was reset. This is not -// while the test itself log something like "open docuent...". +// while the test itself log something like "open document...". // An property of complex test could be that it have only one test method -// which works for serveral minutes. Ih this case the TimeOut get not trigger +// which works for several minutes. In this case the TimeOut get not trigger // and the office was killed. -// In complex tests just use "ThreadTimeOut" as timout. +// In complex tests just use "ThreadTimeOut" as timeout. for (int i = 0; i < entries.length; i++) { |