@Test
public void getVClockByteMethod()
{
final byte[] clockBytes = "a85hYGBgzGDKBVIcypz/fvo/2e2UwZTImMfKwHIy/SRfFgA=".getBytes();
final VClock expected = new BasicVClock(clockBytes);
final PojoWithAnnotatedByteMethods pojo = new PojoWithAnnotatedByteMethods();
pojo.setVClock(clockBytes);
assertEquals(expected, AnnotationUtil.getVClock(pojo));
assertEquals(expected, AnnotationUtil.getVClock(pojo, null));