コード例 #1
0
 private boolean isMatchingRequirementFor(TestOutcome testOutcome, Requirement requirement) {
   return (fullPathOf(requirement)
           .matchesOrIsADescendantOf(normalizedPath(testOutcome.getPathId())))
       || (fullPathOf(requirement)
           .matchesOrIsADescendantOf(normalizedPath(testOutcome.getPath())));
 }