package osm.jp.coverage.postoffice; import java.io.File; import org.junit.After; import org.junit.AfterClass; import org.junit.Before; import org.junit.BeforeClass; import org.junit.runner.RunWith; import org.junit.runners.Suite; @RunWith(Suite.class) @Suite.SuiteClasses({ DbPostofficeTest.class, DbExistTest.class, PostofficeTest.class, ToPostgisTest.class, CoverageTest.class }) public class AllTest { @BeforeClass public static void setUpClass() throws Exception { File dir = new File("database"); dir.deleteOnExit(); dir.mkdir(); } @AfterClass public static void tearDownClass() throws Exception { } @Before public void setUp() throws Exception { } @After public void tearDown() throws Exception { } }