getMapping(SeqC.class, null, true);
DataSource ds = conf.getDataSource2(null);
// hold a and c and start b
Seq seq = conf.getSequenceInstance();
long aid = ((Long) seq.next(_broker, aMapping)).longValue();
for (int i = 0; i < 5; i++)
seq.next(_broker, bMapping);
assertEquals(new Long(aid + 1), seq.next(_broker, aMapping));
assertEquals(new Long(aid + 2), seq.next(_broker, cMapping));
}