result = test("{\"key1\": " + _bytes16Quoted + ", \"key2\": " + _bytes16Quoted + "}", BytesMap.class);
final Map<String, ByteString> bytesFixture = new HashMap<String, ByteString>();
bytesFixture.put("key1", ByteString.copyAvroString(_bytes16, true));
bytesFixture.put("key2", ByteString.copyAvroString(_bytes16, true));
Assert.assertEquals(result, new BytesMap(new DataMap(bytesFixture)));
Assert.assertSame(result.getClass(), BytesMap.class);
result = test("{\"key1\": {\"location\": \"Sunnyvale\"}, \"key2\": {\"location\": \"MTV\"}}", RecordBarMap.class);
final DataMap dataFixture1 = new DataMap();
final DataMap dataFixture2 = new DataMap();