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