DbusEventBufferAppendable buf1 = _eventBufferMult.getDbusEventBufferAppendable(lSource);
assertNotNull(buf1, "cannot get buffer by lSource " + lSource);
assertTrue(buf1 == buf, "buf and buf1 should be the same buffer");
// logical source, different logical partition 1 - SAME BUFFER
LogicalPartition lPartition = new LogicalPartition((short)1);
buf1 = _eventBufferMult.getDbusEventBufferAppendable(lSource, lPartition);
// should be the same buffer
assertNotNull(buf1, "cannot get buffer by lSource " + lSource + ";lPartition =" + lPartition);
assertTrue(buf1 == buf, "buf and buf1 should be the same buffer");
// logical source, different logical partition 2 - DIFFERENT BUFFER
lPartition = new LogicalPartition((short)2);
buf1 = _eventBufferMult.getDbusEventBufferAppendable(lSource, lPartition);
assertNotNull(buf1, "cannot get buffer by lSource " + lSource + ";lPartition =" + lPartition);
assertTrue(buf1 != buf, "buf and buf1 should not be the same buffer");
// logical source, different logical partition 12 - DIFFERENT BUFFER (same as for lsr=2,lp=2)