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 extends BaseTestCase{ 15 16 @Test 17 public void testInitEnvironment() throws Exception { 18 String docStorePropertyFilePath=docStoreEnvUtil.getDocStorePropertiesFilePath(); 19 assertNotNull(docStorePropertyFilePath); 20 } 21 }