Clover Coverage Report - sampleapp 2.0.0-SNAPSHOT
Coverage timestamp: Wed Dec 31 1969 19:00:00 EST
../../../../img/srcFileCovDistChart0.png 0% of files have more coverage
8   52   4   4
4   26   0.5   2
2     2  
1    
 
  TravelServiceLocator       Line # 27 8 0% 4 14 0% 0.0
 
No Tests
 
1    /*
2    * Copyright 2007 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10    * Unless required by applicable law or agreed to in writing, software
11    * distributed under the License is distributed on an "AS IS" BASIS,
12    * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13    * See the License for the specific language governing permissions and
14    * limitations under the License.
15    */
16    package edu.sampleu.travel.infrastructure;
17   
18    import org.apache.commons.lang.StringUtils;
19    import org.apache.log4j.Logger;
20    import org.springframework.context.ConfigurableApplicationContext;
21    import org.springframework.context.support.ClassPathXmlApplicationContext;
22   
23    /**
24    * Initializes the Travel App Spring context.
25    * @author Kuali Rice Team (rice.collab@kuali.org)
26    */
 
27    public class TravelServiceLocator {
28    private static final Logger LOG = Logger.getLogger(TravelServiceLocator.class);
29   
30    private static final String STANDARD_CONTEXT = "classpath:SampleAppBeans.xml";
31    private static final String TEST_CONTEXT = "classpath:SampleAppBeans-test.xml";
32   
33    private static ConfigurableApplicationContext appContext;
34   
 
35  0 toggle public static synchronized void initialize(boolean test) {
36  0 if (appContext == null) {
37  0 final String[] resources;
38    // check if we are running in unit tests, and if so, add the test context resource
39  0 if (test) {
40  0 resources = new String[] { STANDARD_CONTEXT, TEST_CONTEXT };
41    } else {
42  0 resources = new String[] { STANDARD_CONTEXT };
43    }
44  0 LOG.info("Loading contexts: " + StringUtils.join(resources, ", "));
45  0 appContext = new ClassPathXmlApplicationContext(resources);
46    }
47    }
48   
 
49  0 toggle public static synchronized ConfigurableApplicationContext getAppContext() {
50  0 return appContext;
51    }
52    }