@Test
public void testComplexListModelToEDBObjectConversion_shouldWork() throws Exception {
TestModel model = new TestModel();
model.setId("test");
SubModel sub1 = new SubModel();
sub1.setId("sub1");
sub1.setValue("teststring1");
SubModel sub2 = new SubModel();
sub2.setId("sub2");
sub2.setValue("teststring2");
List<SubModel> subs = new ArrayList<SubModel>();
subs.add(sub1);
subs.add(sub2);
model.setSubs(subs);
ConnectorInformation id = getTestConnectorInformation();