use of gov.ca.cwds.cals.service.dto.rfa.RFA1cFormDTO in project cals-api by ca-cwds.
the class RFA1cResourceTest method getExternalEntityApiHelper.
@Override
protected BaseExternalEntityApiHelper<RFA1cFormDTO> getExternalEntityApiHelper() {
TestExternalEntityConfiguration<RFA1cFormDTO> configuration = new TestExternalEntityConfiguration<RFA1cFormDTO>(clientTestRule, RFA1cFormDTO.class, API.RFA_1C_FORMS) {
@Override
protected String getFixture() {
return FRA1C_FORM_FIXTURE;
}
@Override
public GenericType<CollectionDTO<RFA1cFormDTO>> getCollectionDTOGenericType() {
return new GenericType<CollectionDTO<RFA1cFormDTO>>() {
};
}
@Override
public void modifyEntity(RFA1cFormDTO rfa1cFormDTO) {
CountyType applicationCounty = new CountyType();
applicationCounty.setId(35L);
applicationCounty.setValue("San Benito");
rfa1cFormDTO.setApplicationCounty(applicationCounty);
}
};
return new BaseExternalEntityApiHelper<RFA1cFormDTO>(clientTestRule, configuration, formAHelper) {
@Override
public RFA1cFormDTO createEntity(RFA1aFormDTO form) throws Exception {
RFA1cFormDTO rfa1cFormDTO = super.createEntity(form);
try {
super.createEntity(form);
Assert.fail();
} catch (BadRequestException e) {
// ok
}
return rfa1cFormDTO;
}
@Override
public void getEntitiesByFormId() throws Exception {
}
};
}
Aggregations