Changeset 8570 in josm for trunk/test/unit/org/openstreetmap


Ignore:
Timestamp:
2015-07-05T02:25:58+02:00 (9 years ago)
Author:
Don-vip
Message:

checkstyle

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/test/unit/org/openstreetmap/josm/data/imagery/WMTSTileSourceTest.java

    r8569 r8570  
    5050        verifyMercatorTile(testSource, 0, 0, 2);
    5151        verifyMercatorTile(testSource, 1, 1, 2);
    52         for(int x = 0; x < 4; x++) {
    53             for(int y = 0; y < 4; y++) {
     52        for (int x = 0; x < 4; x++) {
     53            for (int y = 0; y < 4; y++) {
    5454                verifyMercatorTile(testSource, x, y, 3);
    5555            }
    5656        }
    57         for(int x = 0; x < 8; x++) {
    58             for(int y = 0; y < 4; y++) {
     57        for (int x = 0; x < 8; x++) {
     58            for (int y = 0; y < 4; y++) {
    5959                verifyMercatorTile(testSource, x, y, 4);
    6060            }
    6161        }
    6262
    63         verifyMercatorTile(testSource, 2<<9 - 1, 2<<8 - 1, 10);
     63        verifyMercatorTile(testSource, 2 << 9 - 1, 2 << 8 - 1, 10);
    6464
    6565        assertEquals("TileXMax", 1, testSource.getTileXMax(1));
     
    6969        assertEquals("TileXMax", 5, testSource.getTileXMax(3));
    7070        assertEquals("TileYMax", 4, testSource.getTileYMax(3));
    71 
    7271    }
    7372
     
    8786        verifyMercatorTile(testSource, 0, 0, 2, zoomOffset);
    8887        verifyMercatorTile(testSource, 1, 1, 2, zoomOffset);
    89         for(int x = 0; x < 4; x++) {
    90             for(int y = 0; y < 4; y++) {
     88        for (int x = 0; x < 4; x++) {
     89            for (int y = 0; y < 4; y++) {
    9190                verifyMercatorTile(testSource, x, y, 3, zoomOffset);
    9291            }
    9392        }
    94         for(int x = 0; x < 8; x++) {
    95             for(int y = 0; y < 4; y++) {
     93        for (int x = 0; x < 8; x++) {
     94            for (int y = 0; y < 4; y++) {
    9695                verifyMercatorTile(testSource, x, y, zoomOffset);
    9796            }
    9897        }
    9998
    100         verifyMercatorTile(testSource, 2<<9 - 1, 2<<8 - 1, zoomOffset);
     99        verifyMercatorTile(testSource, 2 << 9 - 1, 2 << 8 - 1, zoomOffset);
    101100
    102101        assertEquals("TileXMax", 1, testSource.getTileXMax(1));
     
    106105        assertEquals("TileXMax", 4, testSource.getTileXMax(3));
    107106        assertEquals("TileYMax", 4, testSource.getTileYMax(3));
    108 
    109107    }
    110108
     
    113111        Main.setProjection(Projections.getProjectionByCode("EPSG:4326"));
    114112        WMTSTileSource testSource = new WMTSTileSource(testImageryTOPO_PL);
    115         verifyTile(new LatLon(56,12), testSource, 0, 0, 1);
    116         verifyTile(new LatLon(56,12), testSource, 0, 0, 2);
     113        verifyTile(new LatLon(56, 12), testSource, 0, 0, 1);
     114        verifyTile(new LatLon(56, 12), testSource, 0, 0, 2);
    117115        verifyTile(new LatLon(51.1268639, 16.8731360), testSource, 1, 1, 2);
    118116
Note: See TracChangeset for help on using the changeset viewer.