1 package org.kuali.ole;
2
3 import org.junit.Before;
4 import org.junit.Test;
5
6 import static junit.framework.Assert.assertNotNull;
7
8 /**
9 * Created by IntelliJ IDEA.
10 * User: pvsubrah
11 * Date: 4/4/12
12 * Time: 3:41 PM
13 * To change this template use File | Settings | File Templates.
14 */
15 public class PropertyUtil_UT extends OleBaseTestCase {
16
17 @Test
18 public void testOleProperties() throws Exception {
19 String devUrl = PropertyUtil.getPropertyUtil().getProperty("docstore.url");
20 assertNotNull(devUrl);
21 System.out.println(devUrl);
22 }
23 }