Coverage Report - org.jbehave.core.steps.InjectableStepsFactory
 
Classes in this File Line Coverage Branch Coverage Complexity
InjectableStepsFactory
N/A
N/A
1
 
 1  
 package org.jbehave.core.steps;
 2  
 
 3  
 import java.util.List;
 4  
 
 5  
 /**
 6  
  * Interface abstracting the creation of {@link CandidateSteps}.
 7  
  * Concrete implementations will provide different mechanisms
 8  
  * to create the steps instances.
 9  
  */
 10  
 public interface InjectableStepsFactory {
 11  
 
 12  
         List<CandidateSteps> createCandidateSteps();
 13  
 
 14  
     Object createInstanceOfType(Class<?> type);
 15  
 
 16  
 }