1 21 22 package org.apache.derbyTesting.unitTests.harness; 23 24 import org.apache.derby.iapi.services.monitor.Monitor; 25 26 import org.apache.derbyTesting.unitTests.harness.UnitTestManager; 27 28 import java.util.Properties ; 29 30 39 40 41 public class UnitTestMain { 42 43 public static void main(String args[]) { 44 45 46 Properties bootProperties = new Properties (); 47 48 bootProperties.put("derby.service.unitTestManager", UnitTestManager.MODULE); 50 51 Monitor.startMonitor(bootProperties, System.err); 52 } 53 } 54 | Popular Tags |