use of gov.ca.cwds.data.legacy.cms.entity.PlacementHome in project api-core by ca-cwds.
the class R03960Test method preparePlacementHome.
private void preparePlacementHome(int facilityType, String licenseCode, String facilityName) {
final PlacementHome placementHome = placementHomeEntityAwareDTO.getEntity();
placementHome.setFacilityType((short) facilityType);
placementHome.setLicensrCd(licenseCode);
placementHome.setFacltyNm(facilityName);
}
use of gov.ca.cwds.data.legacy.cms.entity.PlacementHome in project api-core by ca-cwds.
the class R04966Test method testBckPersnmValid.
@Test
public void testBckPersnmValid() {
PlacementHome placementHome = new PlacementHome();
placementHome.setBckPersnm("S 1A A Sr.");
placementHomeEntityAwareDTO.setEntity(placementHome);
assertValid("R-04966");
}
use of gov.ca.cwds.data.legacy.cms.entity.PlacementHome in project api-core by ca-cwds.
the class R04966Test method testLaPLstnmValid.
@Test
public void testLaPLstnmValid() {
PlacementHome placementHome = new PlacementHome();
placementHome.setLaPLstnm("A1A");
placementHomeEntityAwareDTO.setEntity(placementHome);
assertValid("R-04966");
}
use of gov.ca.cwds.data.legacy.cms.entity.PlacementHome in project api-core by ca-cwds.
the class R04966Test method testLaPMidnmInvalid.
@Test
public void testLaPMidnmInvalid() {
PlacementHome placementHome = new PlacementHome();
placementHome.setLaPMidnm("11");
placementHomeEntityAwareDTO.setEntity(placementHome);
check("R-04966");
}
use of gov.ca.cwds.data.legacy.cms.entity.PlacementHome in project api-core by ca-cwds.
the class R04966Test method testPyeLstnmValid.
@Test
public void testPyeLstnmValid() {
PlacementHome placementHome = new PlacementHome();
placementHome.setPyeLstnm("A1A");
placementHomeEntityAwareDTO.setEntity(placementHome);
assertValid("R-04966");
}
Aggregations