1 64 65 package com.jcorporate.expresso.services.test; 66 67 import junit.framework.TestCase; 68 import org.apache.log4j.Category; 69 import org.apache.log4j.Logger; 70 71 72 78 public class ExpressoTestCase 79 extends TestCase { 80 private static Logger log = Logger.getLogger(ExpressoTestCase.class); 81 82 86 public ExpressoTestCase(String name) 87 throws Exception { 88 super(name); 89 TestSystemInitializer.setUp(); 90 } 91 92 95 protected Category getLog() { 96 return log; 97 } 98 99 103 protected void setUp() 104 throws Exception { 105 TestSystemInitializer.setUp(); 106 } 107 108 protected void tearDown() 109 throws Exception { 110 } 111 } | Popular Tags |