@Test
public void testSiteDedupe() throws Exception {
// need to not double count invocations at replicas, but do look at
// min, max, avg
ProcOutputRow data[] = { //proc/part/time/invok/min/max/avg
new ProcOutputRow("proc", 0L, 12345L, 200*mB, 4L, 10L, 6L),
new ProcOutputRow("proc", 0L, 12345L, 100*mB, 4L, 25L, 10L),
new ProcOutputRow("proc", 0L, 12345L, 100*mB, 1L, 4L, 2L),
new ProcOutputRow("proc", 1L, 12345L, 400*mB, 2L, 8L, 4L)
};
ResultRow result[] = { //time/proc/perc/inok/min/max/avg/tot
new ResultRow(12345L, "proc", 100L, 800 * mB, 1L, 25L, 4L, 3200L)
};
StatsProcOutputTable dut = new StatsProcOutputTable();