@Test
  @Ignore
  public void encode() {
    StopWatch stopWatch = new StopWatch();
    Coder coder = new JsonSmartCoder();

    stopWatch.start();
    byte[] bytes = coder.encode(new Bean());
    stopWatch.stop();

    System.out.printf("Encoded %d bytes in %s:%n%s%n", bytes.length, stopWatch, new String(bytes));

    Bean bean = coder.decode(bytes);
    System.out.println(bean);
  }