1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.common.util.spring;
17
18 import org.junit.Ignore;
19 import org.junit.Test;
20 import org.kuali.common.util.spring.service.DefaultSpringService;
21 import org.kuali.common.util.spring.service.SpringService;
22 import org.slf4j.Logger;
23 import org.slf4j.LoggerFactory;
24
25 public class ApplicationPropertiesTest {
26
27 private static final Logger logger = LoggerFactory.getLogger(ApplicationPropertiesTest.class);
28
29 @Test
30 @Ignore
31 public void test() {
32 try {
33 logger.debug("");
34 SpringService ss = new DefaultSpringService();
35 ss.load("classpath:org/kuali/common/util/spring/application-properties-context-test.xml");
36 } catch (Throwable e) {
37 e.printStackTrace();
38 }
39 }
40 }