(String text, Node node)
| 121 | } |
| 122 | |
| 123 | private static String getText(String text, Node node) { |
| 124 | return text.substring(node.getStartOffset(), node.getEndOffset()); |
| 125 | } |
| 126 | |
| 127 | private static void assertLocation(int start, int end, Node node) throws Exception { |
| 128 | int actualStart = node.getStartOffset(); |
no test coverage detected