}
@Test
public void testExport_ClassHierarchy_Success() throws Exception {
String json = "{\"subclass\": {\"inner\": \"hello\", \"outer\": \"world\"}}";
SubclassDto dto = new SubclassDto();
dto.inner = "hello";
dto.outer = "world";
runExportTest_Success(json, false, dto);
}