Changeset 9569 in josm for trunk/test
- Timestamp:
- 2016-01-22T22:31:36+01:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/io/NoteReaderTest.java
r8858 r9569 83 83 assertEquals("", c2.getText()); 84 84 } 85 86 /** 87 * Non-regression test for bug #12393. 88 * @throws Exception if an error occurs 89 */ 90 @Test 91 public void testTicket12393() throws Exception { 92 // CHECKSTYLE.OFF: LineLength 93 new NoteReader( 94 "<note id=\"233775\" lat=\"48.2411985\" lon=\"-122.3744820\" created_at=\"2014-08-31T17:13:29Z\" closed_at=\"2015-09-06T23:35:14Z\">"+ 95 "<comment action=\"opened\" timestamp=\"2014-08-31T17:13:29Z\" uid=\"7247\" user=\"goldfndr\">Jump Start Espresso | 26930</comment>"+ 96 "<comment action=\"hidden\" timestamp=\"2015-09-06T23:34:26Z\" uid=\"355617\" user=\"pnorman\"></comment>"+ 97 "<comment action=\"reopened\" timestamp=\"2015-09-06T23:34:38Z\" uid=\"355617\" user=\"pnorman\"></comment>"+ 98 "<comment action=\"closed\" timestamp=\"2015-09-06T23:35:14Z\" uid=\"355617\" user=\"pnorman\">mapped, but inadvertently hid the note</comment>"+ 99 "</note>").parse(); 100 // CHECKSTYLE.ON: LineLength 101 } 85 102 }
Note:
See TracChangeset
for help on using the changeset viewer.