package osm.jp.coverage.police; import java.io.IOException; import java.sql.SQLException; import javax.xml.parsers.ParserConfigurationException; import javax.xml.transform.TransformerException; import org.junit.Test; import static org.junit.Assert.*; import org.junit.BeforeClass; import org.xml.sax.SAXException; public class Coverage5Test { @SuppressWarnings("FieldNameHidesFieldInSuperclass") static String gmlFolderName = "GML_POLICE"; @BeforeClass public static void setUpClass() throws Exception { osm.jp.coverage.CoverageTest.gmlFolderName = gmlFolderName; osm.jp.coverage.CoverageTest.setUpClass(); } @Test public void testMain() { try { System.out.println("main"); String[] args = new String[0]; Coverage5.main(args); } catch (IOException | ClassNotFoundException | SQLException | ParserConfigurationException | TransformerException | SAXException e) { fail("The test case is a prototype."); } osm.jp.coverage.CoverageTest.testCoverage_main(); } }