assertThat(errors.get(1).getLine() + 1, is(2));
assertThat(errors.get(1).getStartColumn() + 1, is(1));
assertThat(errors.get(1).getEndColumn() + 1, is(12));
ContextPath contextPath = errors.get(1).getIncludeContext();
assertThat(contextPath.size(), is(2));
IncludeInfo includeInfo = contextPath.pop();
assertThat(includeInfo.getLine() + 1, is(7));
assertThat(includeInfo.getStartColumn() + 1, is(14));
assertThat(includeInfo.getEndColumn() + 1, is(47));
assertThat(includeInfo.getIncludeName(), is(includedResource1));
assertThat(contextPath.size(), is(1));