Changeset 18635 in josm for trunk/test/unit/org/openstreetmap
- Timestamp:
- 2023-01-17T14:13:17+01:00 (22 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/gui/layer/geoimage/RemoteEntryTest.java
r18622 r18635 20 20 () -> null, () -> null, () -> null, () -> null); 21 21 EqualsVerifier.simple().forClass(RemoteEntry.class).usingGetClass() 22 .withIgnoredFields("firstImage", "lastImage", "nextImage", "previousImage") 22 .withIgnoredFields("firstImage", "lastImage", "nextImage", "previousImage" /* These suppliers don't have good == semantics */, 23 "width", "height" /* Width and height can be corrected later, although it is originally from exif, see #22626 */) 23 24 .withNonnullFields("uri") 24 25 .withPrefabValues(RemoteEntry.class, remoteEntryA, remoteEntryB)
Note:
See TracChangeset
for help on using the changeset viewer.