View Javadoc
1   package org.kuali.ole.docstore.discovery;
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: 3:06 PM
12   * To change this template use File | Settings | File Templates.
13   */
14  public class DiscoveryEnvUtil_UT extends BaseTestCase {
15  
16  
17      @Test
18      public void testInitEnvironment() throws Exception {
19          String discoveryPropertyFilePath = discoveryEnvUtil.getDiscoveryPropertiesFilePath();
20          assertNotNull(discoveryPropertyFilePath);
21  
22      }
23  }