Ignore:
Timestamp:
2018-06-17T17:51:18+02:00 (7 years ago)
Author:
donvip
Message:

fix #josm16385 - handle multi values in repeat_on tag

Location:
applications/editors/josm/plugins/indoorhelper/test/unit/model
Files:
2 added
1 moved

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/indoorhelper/test/unit/model/PresetCounterTest.java

    r34308 r34309  
     1// License: GPL. For details, see LICENSE file.
     2package model;
     3
    14import static org.junit.Assert.assertEquals;
    25
     
    69import org.junit.Test;
    710
    8 import model.PresetCounter;
    911import model.TagCatalog.IndoorObject;
    1012
     13/**
     14 * Unit tests of {@link PresetCounter} class.
     15 */
    1116public class PresetCounterTest {
    1217
     
    3641        expectedList.add(IndoorObject.STEPS);
    3742
    38 
    3943        //assertion
    4044        assertEquals(expectedList.get(0), actualList.get(0));
     
    4246        assertEquals(expectedList.get(2), actualList.get(2));
    4347        assertEquals(expectedList.get(3), actualList.get(3));
    44 
    45 
    4648    }
    4749}
Note: See TracChangeset for help on using the changeset viewer.