Ignore:
Timestamp:
2016-03-12T23:58:33+01:00 (9 years ago)
Author:
Don-vip
Message:

sonar - JUnit4 tests should use @Test annotation

Location:
trunk/test/unit/org/openstreetmap/josm/data
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/test/unit/org/openstreetmap/josm/data/cache/JCSCachedTileLoaderJobTest.java

    r8857 r9973  
    7272    @Test
    7373    public void testStatusCodes() throws Exception {
    74         testStatusCode(200);
     74        doTestStatusCode(200);
    7575        // can't test for 3xx, as httpstat.us redirects finally to 200 page
    76         testStatusCode(401);
    77         testStatusCode(402);
    78         testStatusCode(403);
    79         testStatusCode(404);
    80         testStatusCode(405);
    81         testStatusCode(500);
    82         testStatusCode(501);
    83         testStatusCode(502);
     76        doTestStatusCode(401);
     77        doTestStatusCode(402);
     78        doTestStatusCode(403);
     79        doTestStatusCode(404);
     80        doTestStatusCode(405);
     81        doTestStatusCode(500);
     82        doTestStatusCode(501);
     83        doTestStatusCode(502);
    8484    }
    8585
    8686    @Test
    87     public void testUnkownHost() throws Exception {
     87    public void testUnknownHost() throws Exception {
    8888        TestCachedTileLoaderJob job = new TestCachedTileLoaderJob("http://unkownhost.unkownhost/unkown");
    8989        Listener listener = new Listener();
     
    9797    }
    9898
    99     public void testStatusCode(int responseCode) throws Exception {
     99    private void doTestStatusCode(int responseCode) throws Exception {
    100100        TestCachedTileLoaderJob job = getStatusLoaderJob(responseCode);
    101101        Listener listener = new Listener();
  • trunk/test/unit/org/openstreetmap/josm/data/imagery/WMTSTileSourceTest.java

    r9902 r9973  
    1010
    1111import org.junit.BeforeClass;
     12import org.junit.Ignore;
    1213import org.junit.Test;
    1314import org.openstreetmap.gui.jmapviewer.tilesources.TemplatedTMSTileSource;
     
    8485        assertEquals("TileXMax", 4, testSource.getTileXMax(2));
    8586        assertEquals("TileYMax", 4, testSource.getTileYMax(2));
    86 
    8787    }
    8888
     
    106106    }
    107107
    108     // XXX - disable this test, needs further working
    109     // @Test
     108    @Test
     109    @Ignore("disable this test, needs further working") // XXX
    110110    public void testWALLONIENoMatrixDimension() throws MalformedURLException, IOException {
    111111        Main.setProjection(Projections.getProjectionByCode("EPSG:31370"));
     
    224224    }
    225225
    226 
    227     // XXX: disabled as this needs user action
    228     //@Test
     226    @Test
     227    @Ignore("disabled as this needs user action") // XXX
    229228    public void testTwoTileSetsForOneProjection() throws Exception {
    230229        Main.setProjection(Projections.getProjectionByCode("EPSG:3857"));
     
    236235    }
    237236
    238     // XXX: disabled as this needs user action
    239     // @Test
     237    @Test
     238    @Ignore("disabled as this needs user action") // XXX
    240239    public void testManyLayersScrollbars() throws Exception {
    241240        Main.setProjection(Projections.getProjectionByCode("EPSG:3857"));
     
    246245
    247246    @Test
    248     public void testPraserForDuplicateTags() throws Exception {
     247    public void testParserForDuplicateTags() throws Exception {
    249248        Main.setProjection(Projections.getProjectionByCode("EPSG:3857"));
    250249        WMTSTileSource testSource = new WMTSTileSource(testDuplicateTags);
     
    258257
    259258    @Test
    260     public void testPraserForMissingStyleIdentifier() throws Exception {
     259    public void testParserForMissingStyleIdentifier() throws Exception {
    261260        Main.setProjection(Projections.getProjectionByCode("EPSG:3857"));
    262261        WMTSTileSource testSource = new WMTSTileSource(testMissingStyleIdentifer);
     
    268267        assertEquals("Latitude", expected.lat(), ll.lat(), 1e-05);
    269268        assertEquals("Longitude", expected.lon(), ll.lon(), 1e-05);
    270 
    271269    }
    272270
Note: See TracChangeset for help on using the changeset viewer.