Newer
Older
osmCoverage / test / osm / jp / coverage / postoffice / AllTest.java
@hayashi hayashi on 3 May 2018 810 bytes AllTest
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 {
    }
    
}