Coverage Report - org.jbehave.core.io.AbsolutePathCalculator
 
Classes in this File Line Coverage Branch Coverage Complexity
AbsolutePathCalculator
100%
2/2
N/A
1
 
 1  
 package org.jbehave.core.io;
 2  
 
 3  
 /**
 4  
  * {@link PathCalculator} that returns the path provided
 5  
  */
 6  309
 public class AbsolutePathCalculator implements PathCalculator {
 7  
     public String calculate(String root, String path) {
 8  2
         return path;
 9  
     }
 10  
 }