Ignore:
Timestamp:
2016-07-05T23:36:17+02:00 (8 years ago)
Author:
donvip
Message:

Please don't commit compile errors, it breaks everything in Jenkins

Location:
applications/editors/josm/plugins/pt_assistant/test/unit/org/openstreetmap/josm/plugins/pt_assistant/validation
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/pt_assistant/test/unit/org/openstreetmap/josm/plugins/pt_assistant/validation/DirecionTestTest.java

    r32567 r32582  
    2424        DataSet ds = ImportUtils.importOsmFile(file, "testLayer");
    2525       
    26         PTAssitantValidatorTest test = new PTAssitantValidatorTest();
     26        PTAssistantValidatorTest test = new PTAssistantValidatorTest();
    2727       
    2828        Relation route = null;
     
    4646        int onewayErrorCaught = 0;
    4747        for (TestError e: errors ) {
    48             if (e.getCode() == PTAssitantValidatorTest.ERROR_CODE_DIRECTION) {
     48            if (e.getCode() == PTAssistantValidatorTest.ERROR_CODE_DIRECTION) {
    4949                onewayErrorCaught++;
    5050            }
     
    5757        boolean detectedErrorsAreCorrect = true;
    5858        for (TestError e: errors) {
    59             if (e.getCode() == PTAssitantValidatorTest.ERROR_CODE_DIRECTION) {
     59            if (e.getCode() == PTAssistantValidatorTest.ERROR_CODE_DIRECTION) {
    6060                @SuppressWarnings("unchecked")
    6161                List<OsmPrimitive> highlighted = (List<OsmPrimitive>) e.getHighlighted();
     
    6767       
    6868        assertTrue(detectedErrorsAreCorrect);
    69        
    70    
    7169    }
    72 
    7370}
  • applications/editors/josm/plugins/pt_assistant/test/unit/org/openstreetmap/josm/plugins/pt_assistant/validation/PlatformAsWayTest.java

    r32567 r32582  
    2121        DataSet ds = ImportUtils.importOsmFile(file, "testLayer");
    2222       
    23         PTAssitantValidatorTest test = new PTAssitantValidatorTest();
     23        PTAssistantValidatorTest test = new PTAssistantValidatorTest();
    2424       
    2525        List<TestError> errors = new ArrayList<>();
     
    3737        assertEquals(errors.size(), 0);
    3838    }
    39 
    4039}
  • applications/editors/josm/plugins/pt_assistant/test/unit/org/openstreetmap/josm/plugins/pt_assistant/validation/RoadTypeTestTest.java

    r32567 r32582  
    2525        DataSet ds = ImportUtils.importOsmFile(file, "testLayer");
    2626       
    27         PTAssitantValidatorTest test = new PTAssitantValidatorTest();
     27        PTAssistantValidatorTest test = new PTAssistantValidatorTest();
    2828        List<TestError> errors = new ArrayList<>();
    2929       
     
    3737       
    3838        for (TestError e: errors) {
    39             assertEquals(e.getCode(), PTAssitantValidatorTest.ERROR_CODE_ROAD_TYPE);
     39            assertEquals(e.getCode(), PTAssistantValidatorTest.ERROR_CODE_ROAD_TYPE);
    4040            @SuppressWarnings("unchecked")
    4141            List<OsmPrimitive> highlighted = (List<OsmPrimitive>) e.getHighlighted();
     
    4444        }
    4545    }
    46 
    47 
    4846}
  • applications/editors/josm/plugins/pt_assistant/test/unit/org/openstreetmap/josm/plugins/pt_assistant/validation/SortingTestTest.java

    r32567 r32582  
    2121        DataSet ds = ImportUtils.importOsmFile(file, "testLayer");
    2222       
    23         PTAssitantValidatorTest test = new PTAssitantValidatorTest();
     23        PTAssistantValidatorTest test = new PTAssistantValidatorTest();
    2424
    2525        List<TestError> errors = new ArrayList<>();
     
    3333
    3434        assertEquals(errors.size(), 1);
    35         assertEquals(errors.iterator().next().getCode(), PTAssitantValidatorTest.ERROR_CODE_SORTING);
    36         assertEquals(errors.iterator().next().getTester().getClass().getName(), PTAssitantValidatorTest.class.getName());
     35        assertEquals(errors.iterator().next().getCode(), PTAssistantValidatorTest.ERROR_CODE_SORTING);
     36        assertEquals(errors.iterator().next().getTester().getClass().getName(), PTAssistantValidatorTest.class.getName());
    3737    }
    3838
     
    4242        DataSet ds = ImportUtils.importOsmFile(file, "testLayer");
    4343       
    44        
    45         PTAssitantValidatorTest test = new PTAssitantValidatorTest();
     44        PTAssistantValidatorTest test = new PTAssistantValidatorTest();
    4645
    4746        List<TestError> errors = new ArrayList<>();
     
    8281        DataSet ds = ImportUtils.importOsmFile(file, "testLayer");
    8382       
    84         PTAssitantValidatorTest test = new PTAssitantValidatorTest();
     83        PTAssistantValidatorTest test = new PTAssistantValidatorTest();
    8584
    8685        List<TestError> errors = new ArrayList<>();
     
    9493        assertEquals(errors.size(), 0);
    9594    }
    96 
    9795}
Note: See TracChangeset for help on using the changeset viewer.