1 package org.kuali.ole; 2 3 import org.junit.Test; 4 5 import static org.junit.Assert.assertNotNull; 6 7 /** 8 * Created by IntelliJ IDEA. 9 * User: Sreekanth 10 * Date: 6/6/12 11 * Time: 4:30 PM 12 * To change this template use File | Settings | File Templates. 13 */ 14 public class DocStoreEnvUtil_UT 15 extends BaseTestCase { 16 17 @Test 18 public void testInitEnvironment() throws Exception { 19 String docStorePropertyFilePath = docStoreEnvUtil.getDocStorePropertiesFilePath(); 20 assertNotNull(docStorePropertyFilePath); 21 } 22 }