Newer
Older
osmCoverage / test / osm / jp / coverage / police / ToGeoJSONTest.java
@hayashi hayashi on 3 May 2018 466 bytes Tile code=2,4,5
package osm.jp.coverage.police;

import org.junit.Test;
import static org.junit.Assert.*;

public class ToGeoJSONTest {
    
    public ToGeoJSONTest() {
    }

    @Test
    public void testMain() {
        System.out.println("ToGeoJSONTest");
        try {
            String[] args = new String[]{"-slim"};
            ToGeoJSON.main(args);
        }
        catch (Exception e) {
            fail("The test case is a prototype.");        
        }
    }
    
}