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.service.DefaultSpringService;
21 import org.kuali.common.util.service.SpringService;
22 import org.slf4j.Logger;
23 import org.slf4j.LoggerFactory;
24
25 @Deprecated
26 public class ApplicationPropertiesTest {
27
28 private static final Logger logger = LoggerFactory.getLogger(ApplicationPropertiesTest.class);
29
30 @Test
31 @Ignore
32 public void test() {
33 try {
34 logger.debug("");
35 SpringService ss = new DefaultSpringService();
36 ss.load("classpath:org/kuali/common/util/spring/application-properties-context-test.xml");
37 } catch (Throwable e) {
38 e.printStackTrace();
39 }
40 }
41 }