use of com.enonic.xp.core.impl.content.ContentOutboundDependenciesIdsResolver in project xp by enonic.
the class ContentOutboundDependenciesIdsResolverTest method setUp.
@BeforeEach
public void setUp() throws Exception {
this.contentService = Mockito.mock(ContentService.class);
this.contentDataSerializer = Mockito.mock(ContentDataSerializer.class);
this.resolver = new ContentOutboundDependenciesIdsResolver(contentService, contentDataSerializer);
}
Aggregations