@Test
public void testCodecStoreRegisterParent() throws JSONMarshalerException, IOException, ParserException {
System.out.println("testCodecStoreRegisterParent");
JSONValueCodecStore codecStore = new JSONValueCodecStore();
assertFalse(codecStore.hasCodec(Date.class));
codecStore.registerCodec(Date.class, DateJSONValueCodec.class);
assertTrue(codecStore.hasCodec(InternalDate.class));
}