public void testFullCoverage() throws IOException, RepositoryException, ConfigurationException {
DefaultWorkspaceFilter filter = new DefaultWorkspaceFilter();
PathFilterSet set1 = new PathFilterSet(TEST_ROOT + "/content");
filter.add(set1);
Collector listener = new Collector();
filter.dumpCoverage(admin, listener, false);
checkResults("Full coverage needs to include all paths", ALL_PATHS, listener.paths);
}
@Test
public void testNoJcrContentCoverage() throws IOException, RepositoryException, ConfigurationException {