Changeset 17613 in josm for trunk/test
- Timestamp:
- 2021-03-21T09:23:34+01:00 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/gui/mappaint/mapcss/FunctionsTest.java
r17275 r17613 3 3 4 4 import static org.junit.jupiter.api.Assertions.assertEquals; 5 import static org.junit.jupiter.api.Assertions.assertNull; 5 6 import static org.junit.jupiter.api.Assertions.assertTrue; 6 7 import static org.openstreetmap.josm.data.osm.OsmPrimitiveType.NODE; … … 54 55 return new Environment(osm); 55 56 } 57 } 58 59 /** 60 * Unit test of {@link Functions#title}. 61 */ 62 @Test 63 void testTitle() { 64 assertNull(Functions.title(null)); 65 assertEquals("", Functions.title("")); 66 assertEquals("I Am Fine", Functions.title("i am FINE")); 56 67 } 57 68
Note:
See TracChangeset
for help on using the changeset viewer.