Clover coverage report - Replica - 1.0-Alpha
Coverage timestamp: Dom Fev 1 2004 17:00:58 WET
file stats: LOC: 10   Methods: 1
NCLOC: 8   Classes: 1
30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover
 
 Source file Conditionals Statements Methods TOTAL
ThreadUtilities.java - 0% 0% 0%
coverage
 1   
 package nmp.util;
 2   
 
 3   
 public class ThreadUtilities
 4   
 {
 5  0
     public static void invoke( Runnable doRun) {
 6  0
         Thread th = new Thread( doRun);
 7  0
         th.start();
 8   
     }
 9   
 }
 10