package com.cse10.gui; import org.apache.log4j.Logger; import org.junit.After; import org.junit.Before; import org.junit.Test; public class MainTest { Logger log = Logger.getLogger(this.getClass()); @Before public void setUp() throws Exception { } @Test public void testName() throws Exception { log.info("hahaha"); } @After public void tearDown() throws Exception { } }