use of org.forgerock.openam.entitlement.rest.ApplicationTypesResource in project OpenAM by OpenRock.
the class ApplicationTypesResourceTest method setUp.
@BeforeMethod
public void setUp() {
typeManager = mock(ApplicationTypeManagerWrapper.class);
testResource = new ApplicationTypesResource(typeManager, mock(Debug.class));
mockApplicationTypeManager = mock(ApplicationTypeManagerWrapper.class);
mockDebug = mock(Debug.class);
testResource = new ApplicationTypesResource(mockApplicationTypeManager, mockDebug) {
@Override
protected List<ResourceResponse> getResourceResponses(List<ApplicationTypeWrapper> types) {
return null;
}
};
}
Aggregations