public static Map<String, EventSource> createVariedNumAttrsCases() {
return new HashMap<String, EventSource>() {
{
// datasets with fields, x attributes, 10 byte long attr names, 10
// byte values.
put("100000,0,10,10,10", new AttrSynthSource(100000, 10, 10, 10, 1337));
put("100000,0,100,10,10",
new AttrSynthSource(100000, 100, 10, 10, 1337));
put("10000,0,1000,10,10",
new AttrSynthSource(10000, 1000, 10, 10, 1337));
put("1000,0,10000,10,10",
new AttrSynthSource(1000, 10000, 10, 10, 1337));
}
};
}