Ignore:
Timestamp:
2016-07-06T17:16:53+02:00 (9 years ago)
Author:
floscher
Message:

[mapillary] Some minor style fixes

Location:
applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/utils
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/utils/ImageUtilsTest.java

    r32383 r32593  
     1// License: GPL. For details, see LICENSE file.
    12package org.openstreetmap.josm.plugins.mapillary.utils;
    23
  • applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/utils/MapillaryURLTest.java

    r32069 r32593  
     1// License: GPL. For details, see LICENSE file.
    12package org.openstreetmap.josm.plugins.mapillary.utils;
    23
     
    2627  }
    2728
    28   @Test(expected=IllegalArgumentException.class)
     29  @Test(expected = IllegalArgumentException.class)
    2930  public void testIllegalBrowseEditURL() {
    3031    MapillaryURL.browseEditURL(null);
    3132  }
    3233
    33   @Test(expected=IllegalArgumentException.class)
     34  @Test(expected = IllegalArgumentException.class)
    3435  public void testIllegalBrowseEditURL2() {
    3536    MapillaryURL.browseEditURL("123456789012345678901");
    3637  }
    3738
    38   @Test(expected=IllegalArgumentException.class)
     39  @Test(expected = IllegalArgumentException.class)
    3940  public void testIllegalBrowseEditURL3() {
    4041    MapillaryURL.browseEditURL("12345678901234567890123");
    4142  }
    4243
    43   @Test(expected=IllegalArgumentException.class)
     44  @Test(expected = IllegalArgumentException.class)
    4445  public void testIllegalBrowseEditURL4() {
    4546    MapillaryURL.browseEditURL("123456789012345678901+");
     
    5455  }
    5556
    56   @Test(expected=IllegalArgumentException.class)
     57  @Test(expected = IllegalArgumentException.class)
    5758  public void testIllegalBrowseImageURL() {
    5859    MapillaryURL.browseImageURL(null);
    5960  }
    6061
    61   @Test(expected=IllegalArgumentException.class)
     62  @Test(expected = IllegalArgumentException.class)
    6263  public void testIllegalBrowseImageURL2() {
    6364    MapillaryURL.browseImageURL("123456789012345678901");
    6465  }
    6566
    66   @Test(expected=IllegalArgumentException.class)
     67  @Test(expected = IllegalArgumentException.class)
    6768  public void testIllegalBrowseImageURL3() {
    6869    MapillaryURL.browseImageURL("12345678901234567890123");
    6970  }
    7071
    71   @Test(expected=IllegalArgumentException.class)
     72  @Test(expected = IllegalArgumentException.class)
    7273  public void testIllegalBrowseImageURL4() {
    7374    MapillaryURL.browseImageURL("123456789012345678901+");
     
    212213      }
    213214      assertTrue(
    214           expectedParams[exIndex] + " was expected in the query string of " + actualUrl.toString() + " but wasn't there." ,
     215          expectedParams[exIndex] + " was expected in the query string of " + actualUrl.toString() + " but wasn't there.",
    215216          parameterIsPresent
    216217      );
  • applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/utils/MapillaryUtilsTest.java

    r31799 r32593  
     1// License: GPL. For details, see LICENSE file.
    12package org.openstreetmap.josm.plugins.mapillary.utils;
    23
  • applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/utils/PluginStateTest.java

    r31972 r32593  
     1// License: GPL. For details, see LICENSE file.
    12package org.openstreetmap.josm.plugins.mapillary.utils;
    23
  • applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/utils/TestUtil.java

    r32374 r32593  
     1// License: GPL. For details, see LICENSE file.
    12package org.openstreetmap.josm.plugins.mapillary.utils;
    23
Note: See TracChangeset for help on using the changeset viewer.