package osm.jp.coverage;
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({
osm.jp.coverage.busstop.AllTest.class,
osm.jp.coverage.fuel.AllTest.class,
osm.jp.coverage.postoffice.AllTest.class,
osm.jp.coverage.police.AllTest.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 {
}
}