1 package org.kuali.ole; 2 3 import org.junit.Before; 4 5 /** 6 * Created by IntelliJ IDEA. 7 * User: pvsubrah 8 * Date: 4/4/12 9 * Time: 3:44 PM 10 * To change this template use File | Settings | File Templates. 11 */ 12 public class OleBaseTestCase { 13 @Before 14 public void setUp() throws Exception { 15 System.setProperty("app.environment", "local"); 16 System.setProperty("env.properties.home", System.getProperty("user.home")+"/kuali/main/dev/properties"); 17 } 18 }