@Test
public void testBuildIndexLevel2() throws InvalidDDMSException {
Rights rights = new Rights(true, true, true);
PropertyReader.setProperty("output.indexLevel", "2");
String index = rights.buildIndex(0, 1);
assertEquals("[1]", index);
index = rights.buildIndex(2, 4);
assertEquals("[3]", index);
}