public void testBubbleSpeedSingle() {
Pojo pojo = new Pojo(TEST_VALUE);
SerializationContext context = new SerializationContext();
ByteBuffer buffer = ByteBuffer.allocate(1024);
long startTime = System.currentTimeMillis();
context.serialize(pojo, buffer);
long endTime = System.currentTimeMillis();
long delay = endTime-startTime;
System.out.println("Bubble time: "+delay+"ms");
}