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.country.CountryService;
21  import org.kuali.rice.location.impl.country.CountryServiceImplTest;
22  import org.kuali.rice.test.remote.RemoteTestHarness;
23  
24  public class CountryServiceRemoteTest extends CountryServiceImplTest {
25  
26      RemoteTestHarness harness = new RemoteTestHarness();
27  
28      @Before
29      @Override
30      public void setupServiceUnderTest() {
31          super.setupServiceUnderTest();
32          CountryService remoteProxy =
33                  harness.publishEndpointAndReturnProxy(CountryService.class, this.getCountryServiceImpl());
34          super.setCountryService(remoteProxy);
35      }
36  
37      @After
38      public void unPublishEndpoint() {
39          harness.stopEndpoint();
40      }
41  }