package com.aincc.libtest.common; import junit.framework.TestCase; import com.aincc.lib.util.Logger; /** * * <h3><b>BaseTestCase</b></h3></br> * * @author aincc@barusoft.com * @version 1.0.0 * @since 1.0.0 */ public abstract class BaseTestCase extends TestCase { protected static final String LOG = "AinccLib"; public BaseTestCase(String name) { super(name); } @Override protected void setUp() throws Exception { Logger.v1(LOG, "==========================================================="); Logger.v1(LOG, "setUp()"); super.setUp(); } @Override protected void tearDown() throws Exception { Logger.v1(LOG, "tearDown()"); Logger.v1(LOG, ""); super.tearDown(); } }