public void testVoidAttrType() {
String content = "{\"project\": {\"network_policys\": [{\"to\": [\"default-domain\", \"testProject\", \"testPolicy\"], \"href\": \"http://localhost:53730/network-policy/4e4b0486-e56f-4bfe-8716-afc1a76ad106\", \"uuid\": \"4e4b0486-e56f-4bfe-8716-afc1a76ad106\"}], \"fq_name\": [\"default-domain\", \"testProject\"], \"uuid\": \"7a6580ac-d7dc-4363-a342-47a473a32884\"}}";
final JsonParser parser = new JsonParser();
final JsonObject js_obj = parser.parse(content).getAsJsonObject();
final JsonElement element = js_obj.get("project");
Project result = (Project) ApiSerializer.deserialize(element.toString(), Project.class);
assertEquals("testProject", result.getName());
assertNotNull(result.getNetworkPolicys());
}