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