diff options
author | Noel Grandin <noel@peralex.com> | 2014-12-22 14:54:07 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-01-13 08:42:56 +0200 |
commit | e15807f4504a82657b9734f6a2631a2a0c5aa91a (patch) | |
tree | 32f92cf9018577826cb9ed1384da6d3b161a35bc /qadevOOo | |
parent | 04e26ca21cf05989030e457e1f938b7066f677d7 (diff) |
java: nothing is passing in a "ComplexIni" parameter
Change-Id: Iae7530a52eda020f9074a6de0ef9e4b9779593f6
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++) { |