Changeset 15323 in josm for trunk/test/unit
- Timestamp:
- 2019-08-27T00:41:35+02:00 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/gui/mappaint/mapcss/MapCSSParserTest.java
r15315 r15323 466 466 467 467 @Test 468 public void testUniqueValues() throws Exception { 469 assertEquals(Arrays.asList(new String[] {"alpha", "beta"}), 470 Functions.uniq("alpha", "alpha", "alpha", "beta")); 471 assertEquals(Arrays.asList(new String[] {"one", "two", "three"}), 472 Functions.uniq_list(Arrays.asList(new String[] {"one", "one", "two", "two", "two", "three"}))); 473 } 474 475 @Test 468 476 public void testCountRoles() throws Exception { 469 477 DataSet ds = new DataSet();
Note:
See TracChangeset
for help on using the changeset viewer.