1 /** 2 * Copyright 2004-2012 The Kuali Foundation 3 * 4 * Licensed under the Educational Community License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.opensource.org/licenses/ecl2.php 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 package org.kuali.hr.time.test; 17 18 import org.apache.log4j.Logger; 19 import org.junit.After; 20 import org.junit.Before; 21 import org.junit.Ignore; 22 @Ignore 23 public class TestHarnessNonWebBase extends TestHarnessBase { 24 25 private static final Logger LOG = Logger.getLogger(TestHarnessNonWebBase.class); 26 27 28 @Override 29 @Before 30 public void setUp() throws Exception { 31 try{ 32 //TkServiceLocator.start(); 33 // TODO - Start up Minimal set of services here, perhaps depending on test case need. 34 } catch(Exception e){ 35 LOG.error("Failed to start TK app lifecycle", e); 36 throw new RuntimeException("Failed to start TK app lifecycle", e); 37 } 38 super.setUp(); 39 } 40 41 @Override 42 @After 43 public void tearDown() throws Exception { 44 super.tearDown(); 45 } 46 47 }