use of org.hisp.dhis.tracker.validation.service.attribute.TrackedAttributeValidationService in project dhis2-core by dhis2.
the class TrackedAttributeValidationServiceTest method setUp.
@BeforeEach
public void setUp() {
trackedEntityAttributeService = new TrackedAttributeValidationService(userService, fileResourceService);
tea = new TrackedEntityAttribute();
tea.setUid("TeaUid12345");
tea.setUnique(true);
tea.setValueType(ValueType.TEXT);
tea.setOrgunitScope(false);
}
Aggregations