Newer
Older
osmCoverage / test / osm / jp / coverage / busstop / AllTest.java
@hayashi hayashi on 28 Nov 2017 931 bytes fixed:
/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package osm.jp.coverage.busstop;

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;

/**
 *
 * @author yuu
 */
@RunWith(Suite.class)
@Suite.SuiteClasses({
    osm.jp.coverage.busstop.DbExistBusstopTest.class,
    osm.jp.coverage.busstop.DbBusstopTest.class,
    osm.jp.coverage.busstop.BusstopTest.class
})
public class AllTest {

    @BeforeClass
    public static void setUpClass() throws Exception {
    }

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

    @Before
    public void setUp() throws Exception {
    }

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