Newer
Older
osmCoverage / test / osm / jp / coverage / fuel / AllTest.java
package osm.jp.coverage.fuel;

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;
import osm.jp.api.Coverage;

@RunWith(Suite.class)
@Suite.SuiteClasses({
    DbFuelTest.class,
    DbExistTest.class,
    FuelTest.class,
    ToPostgisTest.class,
    CoverageTest.class
})
public class AllTest {

    @BeforeClass
    public static void setUpClass() throws Exception {
        File dir = new File(Coverage.DB_PORP_LOCALDB);
        dir.deleteOnExit();
        dir.mkdir();
    }

    @AfterClass
    public static void tearDownClass() throws Exception {
    }

    @Before
    public void setUp() throws Exception {
    }

    @After
    public void tearDown() throws Exception {
    }
    
}