Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
AbsolutePathCalculator |
|
| 1.0;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 | } |