summaryrefslogtreecommitdiff
path: root/qadevOOo/runner/complexlib/ShowTargets.java
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo/runner/complexlib/ShowTargets.java')
-rw-r--r--qadevOOo/runner/complexlib/ShowTargets.java20
1 files changed, 0 insertions, 20 deletions
diff --git a/qadevOOo/runner/complexlib/ShowTargets.java b/qadevOOo/runner/complexlib/ShowTargets.java
index 478d565afc54..bd37d922eda0 100644
--- a/qadevOOo/runner/complexlib/ShowTargets.java
+++ b/qadevOOo/runner/complexlib/ShowTargets.java
@@ -92,26 +92,6 @@ public class ShowTargets
}
}
- /** determines if the test denoted by a given Class is an interactive test
- */
- static private boolean isInteractiveTest( Class<?> testClass )
- {
- java.lang.reflect.Method interactiveTestMethod = null;
- try { interactiveTestMethod = testClass.getMethod( "isInteractiveTest", new Class[]{} ); }
- catch( Exception e ) { }
-
- if ( interactiveTestMethod != null )
- {
- try
- {
- Boolean result = (Boolean)interactiveTestMethod.invoke( null, new Object[]{} );
- return result.booleanValue();
- }
- catch( Exception e ) { }
- }
- return false;
- }
-
static private String getShortTestDescription( Class<?> _testClass )
{
java.lang.reflect.Method getShortDescriptionMethod = null;