Ignore:
Timestamp:
2016-08-07T17:39:42+02:00 (8 years ago)
Author:
Don-vip
Message:

sonar - squid:S3578 - Test methods should comply with a naming convention

Location:
trunk/test/functional/org/openstreetmap/josm
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/test/functional/org/openstreetmap/josm/data/osm/TaginfoTestIT.java

    r9669 r10758  
    4545     */
    4646    @Test
    47     public void checkPopularTags() throws SAXException, IOException, ParseException {
     47    public void testCheckPopularTags() throws SAXException, IOException, ParseException {
    4848        TaggingPresets.readFromPreferences();
    4949        new TagChecker().initialize();
  • trunk/test/functional/org/openstreetmap/josm/io/MultiFetchServerObjectReaderTest.java

    r10222 r10758  
    271271
    272272    @Test
    273     public void multiGetWithNonExistingNode() throws OsmTransferException {
     273    public void testMultiGetWithNonExistingNode() throws OsmTransferException {
    274274        MultiFetchServerObjectReader reader = new MultiFetchServerObjectReader();
    275275        ArrayList<Node> nodes = new ArrayList<>(ds.getNodes());
  • trunk/test/functional/org/openstreetmap/josm/io/OsmServerBackreferenceReaderTest.java

    r10378 r10758  
    273273
    274274    @Test
    275     public void testBackreferenceForNode_Full() throws OsmTransferException {
     275    public void testBackreferenceForNodeFull() throws OsmTransferException {
    276276        Node n = lookupNode(ds, 0);
    277277        assertNotNull(n);
     
    357357
    358358    @Test
    359     public void testBackreferenceForWay_Full() throws OsmTransferException {
     359    public void testBackreferenceForWayFull() throws OsmTransferException {
    360360        Way w = lookupWay(ds, 1);
    361361        assertNotNull(w);
     
    506506
    507507    @Test
    508     public void testBackreferenceForRelation_Full() throws OsmTransferException {
     508    public void testBackreferenceForRelationFull() throws OsmTransferException {
    509509        Relation r = lookupRelation(ds, 1);
    510510        assertNotNull(r);
  • trunk/test/functional/org/openstreetmap/josm/tools/HttpClientTest.java

    r10733 r10758  
    147147
    148148    @Test
    149     public void test418() throws IOException {
     149    public void testHttp418() throws IOException {
    150150        // https://tools.ietf.org/html/rfc2324
    151151        final HttpClient.Response response = HttpClient.create(new URL("https://httpbin.org/status/418")).connect(progress);
Note: See TracChangeset for help on using the changeset viewer.