use of com.enonic.xp.portal.impl.url.PortalUrlServiceImpl in project xp by enonic.
the class TextRendererTest method before.
@BeforeEach
public void before() {
portalRequest = new PortalRequest();
portalResponse = PortalResponse.create().build();
PortalUrlServiceImpl portalUrlService = new PortalUrlServiceImpl();
portalUrlService.setMacroService(new MockMacroService());
portalUrlService.setStyleDescriptorService(new MockStyleDescriptorService());
service = portalUrlService;
portalRequest.setMode(RenderMode.LIVE);
}
Aggregations