Coverage report

  %line %branch
net.sf.infrared.agent.transport.impl.DoNothingCollectionStrategy
50% 
100% 

 1  
 package net.sf.infrared.agent.transport.impl;
 2  
 
 3  
 import net.sf.infrared.agent.MonitorConfig;
 4  
 import net.sf.infrared.agent.transport.CollectionStrategy;
 5  
 import net.sf.infrared.base.model.OperationStatistics;
 6  
 
 7  4
 public class DoNothingCollectionStrategy implements CollectionStrategy {
 8  
 
 9  
     public boolean init(MonitorConfig configuration) {
 10  
         // TODO Auto-generated method stub
 11  3
         return true;
 12  
     }
 13  
 
 14  
     public boolean collect(OperationStatistics stats) {
 15  
         // TODO Auto-generated method stub
 16  0
         return true;
 17  
     }
 18  
 
 19  
     public void suspend() {
 20  
         // TODO Auto-generated method stub
 21  
 
 22  0
     }
 23  
 
 24  
     public void resume() {
 25  
         // TODO Auto-generated method stub
 26  
 
 27  0
     }
 28  
 
 29  
     public boolean destroy() {
 30  
         // TODO Auto-generated method stub
 31  1
         return true;
 32  
     }
 33  
 
 34  
 }

This report is generated by jcoverage, Maven and Maven JCoverage Plugin.