setUp(), tearDown(), etc.

import org.junit.After;
import org.junit.Before;
import org.junit.Rule;
import org.junit.rules.TestName;

import com.windofkeltia.utilities.TestUtilities;


  // @formatter:off
  @Rule   public TestName name = new TestName();
  @After  public void tearDown() { }
  @Before public void setUp()
  {
    TestUtilities.setUp( name );
  }

  private static final boolean VERBOSE = true;//TestUtilities.VERBOSE;

@Test, etc.

  @Test
  public void test() throws IOException
  {
  }