@Test
public void whether_url_has_max_names() throws Exception {
String source = Files.forIO().readFrom(getClass().getResourceAsStream("transaction_report_filter.xml"), "utf-8");
TransactionReport report = DefaultSaxParser.parse(source);
TransactionType type = report.findMachine("10.1.77.193").findType("URL");
for (int i = 0; i < 3500; i++) {
type.addName(new TransactionName("Test" + i));
}