Coverage Report - org.jbehave.core.steps.Step
 
Classes in this File Line Coverage Branch Coverage Complexity
Step
N/A
N/A
1
 
 1  
 package org.jbehave.core.steps;
 2  
 
 3  
 /**
 4  
  * A Step represents a runnable portion of a Scenario, which matches methods annotated in {@link CandidateSteps} instances.
 5  
  */
 6  
 public interface Step {
 7  
 
 8  
     StepResult perform();
 9  
 
 10  
     StepResult doNotPerform();
 11  
 
 12  
 }