Clover Coverage Report - rice-shareddata-test 2.0.0-SNAPSHOT
Coverage timestamp: Wed Dec 31 1969 19:00:00 EST
../../../../../img/srcFileCovDistChart0.png 0% of files have more coverage
3   17   2   3
2   10   0.67   1
1     2  
1    
 
  ServiceEndpointLocation       Line # 9 3 0% 2 6 0% 0.0
 
No Tests
 
1    package org.kuali.rice.shareddata.impl;
2   
3    /**
4    * Class used for tests within shareddata module just to find an appropriate http endpoint to publish each service on.
5    * This system property is either set in the systemPropertyVariables section of the failsafe plugin's configuration
6    * section or can be overridden on the java/maven invocation by passing in
7    * -Djaxws.endpoint.publish.test.address=${your.url}
8    */
 
9    class ServiceEndpointLocation {
10    static String ENDPOINT_URL = "http://localhost:23000/service"; //Default URL
 
11  0 toggle static {
12  0 String endpoint = System.getProperty("jaxws.endpoint.publish.test.address");
13  0 if (endpoint != null) {
14  0 ENDPOINT_URL = endpoint;
15    }
16    }
17    }