summaryrefslogtreecommitdiff
path: root/java/tests/ServiceConfigurator/mainTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/tests/ServiceConfigurator/mainTest.java')
-rw-r--r--java/tests/ServiceConfigurator/mainTest.java56
1 files changed, 0 insertions, 56 deletions
diff --git a/java/tests/ServiceConfigurator/mainTest.java b/java/tests/ServiceConfigurator/mainTest.java
deleted file mode 100644
index 6dc3149cc61..00000000000
--- a/java/tests/ServiceConfigurator/mainTest.java
+++ /dev/null
@@ -1,56 +0,0 @@
-/*************************************************
- *
- * = PACKAGE
- * tests.ServiceConfigurator
- *
- * = FILENAME
- * mainTest.java
- *
- *@author Prashant Jain
- *
- *************************************************/
-package tests.ServiceConfigurator;
-
-import ACE.ServiceConfigurator.*;
-import ACE.OS.*;
-import java.io.*;
-
-public class mainTest
-{
-
- public static void main (String args [])
- {
- ServiceConfig daemon = new ServiceConfig ();
- try
- {
- daemon.open (args);
- Thread.sleep (10000);
- daemon.open (args);
- }
- catch (InterruptedException e)
- {
- ACE.ERROR (e);
- }
- catch (FileNotFoundException e)
- {
- ACE.ERROR (e);
- }
- catch (IOException e)
- {
- ACE.ERROR (e);
- }
- catch (ClassNotFoundException e)
- {
- ACE.ERROR (e);
- }
- catch (IllegalAccessException e)
- {
- ACE.ERROR (e);
- }
- catch (InstantiationException e)
- {
- ACE.ERROR (e);
- }
- }
-
-}