Newer
Older
osmCoverage / test / osm / jp / coverage / police / Coverage2Test.java
@hayashi hayashi on 3 May 2018 751 bytes Tile code=2,4,5
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.xml.sax.SAXException;

/**
 *
 * @author yuu
 */
public class Coverage2Test {

    @Test
    public void testMain()  {
        System.out.println("Coverage2Test");
        try {
            String[] args = new String[0];
            Coverage2.main(args);
        }
        catch (IOException | ClassNotFoundException | SQLException | ParserConfigurationException | TransformerException | SAXException e) {
            fail("The test case is a prototype.");        
        }
    }
    
}