Changeset 17712 in josm for trunk/test
- Timestamp:
- 2021-04-07T22:34:03+02:00 (4 years ago)
- Location:
- trunk/test/unit/org/openstreetmap/josm
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/data/notes/NoteCommentTest.java
r17275 r17712 6 6 import static org.junit.jupiter.api.Assertions.assertTrue; 7 7 8 import java. util.Date;8 import java.time.Instant; 9 9 10 10 import org.junit.jupiter.api.extension.RegisterExtension; … … 31 31 @Test 32 32 void testNoteComment() { 33 NoteComment comment = new NoteComment( new Date(), null, "foo", null, true);33 NoteComment comment = new NoteComment(Instant.now(), null, "foo", null, true); 34 34 assertEquals("foo", comment.toString()); 35 35 assertTrue(comment.isNew()); -
trunk/test/unit/org/openstreetmap/josm/data/notes/NoteTest.java
r17275 r17712 5 5 import static org.junit.jupiter.api.Assertions.assertNotEquals; 6 6 7 import java. util.Date;7 import java.time.Instant; 8 8 9 9 import org.junit.jupiter.api.extension.RegisterExtension; … … 36 36 Note note = new Note(LatLon.ZERO); 37 37 assertEquals("Note 0: null", note.toString()); 38 note.addComment(new NoteComment( new Date(), null, "foo", null, true));38 note.addComment(new NoteComment(Instant.now(), null, "foo", null, true)); 39 39 assertEquals("Note 0: foo", note.toString()); 40 40 } … … 65 65 .withPrefabValues(LatLon.class, LatLon.ZERO, new LatLon(1, 1)) 66 66 .withPrefabValues(NoteComment.class, 67 new NoteComment( new Date(), null, "foo", null, true),68 new NoteComment( new Date(), null, "bar", null, false))67 new NoteComment(Instant.now(), null, "foo", null, true), 68 new NoteComment(Instant.now(), null, "bar", null, false)) 69 69 .verify(); 70 70 } -
trunk/test/unit/org/openstreetmap/josm/gui/dialogs/NotesDialogTest.java
r17269 r17712 4 4 import static org.junit.jupiter.api.Assertions.assertEquals; 5 5 6 import java. util.Date;6 import java.time.Instant; 7 7 8 8 import javax.swing.JLabel; … … 35 35 void testMultiLineNoteRendering() { 36 36 Note note = new Note(LatLon.ZERO); 37 note.setCreatedAt( new Date());38 note.addComment(new NoteComment( new Date(), User.createLocalUser(null), "foo\nbar\n\nbaz:\nfoo", null, false));37 note.setCreatedAt(Instant.now()); 38 note.addComment(new NoteComment(Instant.now(), User.createLocalUser(null), "foo\nbar\n\nbaz:\nfoo", null, false)); 39 39 assertEquals("0: foo; bar; baz: foo", 40 40 ((JLabel) new NoteRenderer().getListCellRendererComponent(new JList<>(), note, 0, false, false)).getText()); -
trunk/test/unit/org/openstreetmap/josm/io/NoteReaderTest.java
r17275 r17712 64 64 assertEquals(1, list.size()); 65 65 Note n = list.get(0); 66 assertEquals(DateUtils. fromString("2013-04-24 08:08:51 UTC"), n.getClosedAt());67 assertEquals(DateUtils. fromString("2013-04-24 08:07:02 UTC"), n.getCreatedAt());66 assertEquals(DateUtils.parseInstant("2013-04-24 08:08:51 UTC"), n.getClosedAt()); 67 assertEquals(DateUtils.parseInstant("2013-04-24 08:07:02 UTC"), n.getCreatedAt()); 68 68 assertEquals(4, n.getId()); 69 69 assertEquals(new LatLon(36.7232991, 68.86415), n.getLatLon()); … … 74 74 NoteComment c1 = comments.get(0); 75 75 assertEquals(c1, n.getFirstComment()); 76 assertEquals(DateUtils. fromString("2013-04-24 08:07:02 UTC"), c1.getCommentTimestamp());76 assertEquals(DateUtils.parseInstant("2013-04-24 08:07:02 UTC"), c1.getCommentTimestamp()); 77 77 assertEquals(Action.OPENED, c1.getNoteAction()); 78 78 assertEquals("test", c1.getText()); -
trunk/test/unit/org/openstreetmap/josm/tools/date/DateUtilsTest.java
r17275 r17712 10 10 11 11 import java.text.DateFormat; 12 import java.time.Instant; 13 import java.time.format.FormatStyle; 12 14 import java.util.Date; 13 15 import java.util.Random; … … 272 274 assertNotSame(date, DateUtils.cloneDate(date)); 273 275 } 276 277 /** 278 * Unit test of {@link DateUtils#getDateTimeFormatter} method. 279 */ 280 @Test 281 void testDateTimeFormatter() { 282 Instant instant = Instant.parse("2006-01-02T15:04:05Z"); 283 Boolean iso = DateUtils.PROP_ISO_DATES.get(); 284 try { 285 assertNotNull(DateUtils.getDateFormatter(FormatStyle.SHORT).format(instant)); 286 assertNotNull(DateUtils.getTimeFormatter(FormatStyle.SHORT).format(instant)); 287 assertNotNull(DateUtils.getDateTimeFormatter(FormatStyle.SHORT, FormatStyle.SHORT).format(instant)); 288 DateUtils.PROP_ISO_DATES.put(!iso); 289 assertNotNull(DateUtils.getDateFormatter(FormatStyle.SHORT).format(instant)); 290 assertNotNull(DateUtils.getTimeFormatter(FormatStyle.SHORT).format(instant)); 291 assertNotNull(DateUtils.getDateTimeFormatter(FormatStyle.SHORT, FormatStyle.SHORT).format(instant)); 292 } finally { 293 DateUtils.PROP_ISO_DATES.put(iso); 294 } 295 } 274 296 }
Note:
See TracChangeset
for help on using the changeset viewer.