1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.kew.impl.actionlist;
17
18 import org.junit.After;
19 import org.junit.Before;
20 import org.kuali.rice.kew.framework.actionlist.ActionListCustomizationHandlerService;
21 import org.kuali.rice.kim.api.group.GroupService;
22 import org.kuali.rice.test.remote.RemoteTestHarness;
23
24
25
26
27 public class ActionListCustomizationHandlerServiceRemoteTest extends ActionListCustomizationHandlerServiceImplTest {
28 RemoteTestHarness harness = new RemoteTestHarness();
29
30 @Override
31 public void setupServiceUnderTest() {
32 super.setupServiceUnderTest();
33 ActionListCustomizationHandlerService remoteProxy =
34 harness.publishEndpointAndReturnProxy(ActionListCustomizationHandlerService.class, this.getHandlerServiceImpl());
35 super.setHandlerService(remoteProxy);
36 }
37
38 @After
39 public void unPublishEndpoint() {
40 harness.stopEndpoint();
41 }
42 }