Coverage Report - org.jbehave.core.failures.FailingUponPendingStep
 
Classes in this File Line Coverage Branch Coverage Complexity
FailingUponPendingStep
100%
2/2
N/A
2
 
 1  
 package org.jbehave.core.failures;
 2  
 
 3  2
 public final class FailingUponPendingStep implements PendingStepStrategy {
 4  
 
 5  
     public void handleFailure(Throwable throwable) throws Throwable {
 6  1
         throw throwable;
 7  
     }
 8  
 
 9  
 }