Changeset 13907 in josm for trunk/test/unit/org/openstreetmap
- Timestamp:
- 2018-06-10T21:05:01+02:00 (6 years ago)
- Location:
- trunk/test/unit/org/openstreetmap/josm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/command/AddPrimitivesCommandTest.java
r13079 r13907 268 268 WayData way = new WayData(); 269 269 way.put("test", "test"); 270 way.setNode s(Arrays.asList(node1.getId(), node2.getId()));270 way.setNodeIds(Arrays.asList(node1.getId(), node2.getId())); 271 271 List<PrimitiveData> testData = Arrays.<PrimitiveData>asList(node1, node2, way); 272 272 return testData; -
trunk/test/unit/org/openstreetmap/josm/data/osm/WayDataTest.java
r11324 r13907 19 19 public void testSerializationForDragAndDrop() throws Exception { 20 20 final WayData data = new WayData(); 21 data.setNode s(Arrays.asList(1415L, 9265L, 3589L, 7932L, 3846L));21 data.setNodeIds(Arrays.asList(1415L, 9265L, 3589L, 7932L, 3846L)); 22 22 data.setId(314); 23 23 data.setVersion(14);
Note:
See TracChangeset
for help on using the changeset viewer.