001package org.kuali.ole;
002
003import org.junit.Test;
004
005import static org.junit.Assert.assertNotNull;
006
007/**
008 * Created by IntelliJ IDEA.
009 * User: Sreekanth
010 * Date: 6/6/12
011 * Time: 4:30 PM
012 * To change this template use File | Settings | File Templates.
013 */
014public class DocStoreEnvUtil_UT
015        extends BaseTestCase {
016
017    @Test
018    public void testInitEnvironment() throws Exception {
019        String docStorePropertyFilePath = docStoreEnvUtil.getDocStorePropertiesFilePath();
020        assertNotNull(docStorePropertyFilePath);
021    }
022}