Changeset 15814 in josm for trunk/test/unit/org
- Timestamp:
- 2020-02-05T19:53:01+01:00 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/tools/OverpassTurboQueryWizardTest.java
r15370 r15814 31 31 "[out:xml][timeout:90][bbox:{{bbox}}];\n" + 32 32 "(\n" + 33 " node[\"amenity\"=\"drinking_water\"];\n" + 34 " way[\"amenity\"=\"drinking_water\"];\n" + 35 " relation[\"amenity\"=\"drinking_water\"];\n" + 33 " nwr[\"amenity\"=\"drinking_water\"];\n" + 36 34 ");\n" + 37 35 "(._;>;);\n" + … … 48 46 "[out:xml][timeout:90][bbox:{{bbox}}];\n" + 49 47 "(\n" + 50 " node[\"amenity\"!=\"drinking_water\"];\n" + 51 " way[\"amenity\"!=\"drinking_water\"];\n" + 52 " relation[\"amenity\"!=\"drinking_water\"];\n" + 48 " nwr[\"amenity\"!=\"drinking_water\"];\n" + 53 49 ");\n" + 54 50 "(._;>;);\n" + … … 64 60 "[out:xml][timeout:90][bbox:{{bbox}}];\n" + 65 61 "(\n" + 66 " node[\"foo\"=\"bar\"][\"baz\"=\"42\"];\n" + 67 " way[\"foo\"=\"bar\"][\"baz\"=\"42\"];\n" + 68 " relation[\"foo\"=\"bar\"][\"baz\"=\"42\"];\n" + 62 " nwr[\"foo\"=\"bar\"][\"baz\"=\"42\"];\n" + 69 63 ");\n" + 70 64 "(._;>;);\n" + … … 83 77 "[out:xml][timeout:90][bbox:{{bbox}}];\n" + 84 78 "(\n" + 85 " node[\"foo\"=\"bar\"];\n" + 86 " way[\"foo\"=\"bar\"];\n" + 87 " relation[\"foo\"=\"bar\"];\n" + 88 " node[\"baz\"=\"42\"];\n" + 89 " way[\"baz\"=\"42\"];\n" + 90 " relation[\"baz\"=\"42\"];\n" + 79 " nwr[\"foo\"=\"bar\"];\n" + 80 " nwr[\"baz\"=\"42\"];\n" + 91 81 ");\n" + 92 82 "(._;>;);\n" + … … 106 96 "[out:xml][timeout:90][bbox:{{bbox}}];\n" + 107 97 "(\n" + 108 " node[\"foo\"][\"asd\"];\n" + 109 " way[\"foo\"][\"asd\"];\n" + 110 " relation[\"foo\"][\"asd\"];\n" + 111 " node[\"foo\"][\"fasd\"];\n" + 112 " way[\"foo\"][\"fasd\"];\n" + 113 " relation[\"foo\"][\"fasd\"];\n" + 114 " node[\"bar\"][\"asd\"];\n" + 115 " way[\"bar\"][\"asd\"];\n" + 116 " relation[\"bar\"][\"asd\"];\n" + 117 " node[\"bar\"][\"fasd\"];\n" + 118 " way[\"bar\"][\"fasd\"];\n" + 119 " relation[\"bar\"][\"fasd\"];\n" + 98 " nwr[\"foo\"][\"asd\"];\n" + 99 " nwr[\"foo\"][\"fasd\"];\n" + 100 " nwr[\"bar\"][\"asd\"];\n" + 101 " nwr[\"bar\"][\"fasd\"];\n" + 120 102 ");\n" + 121 103 "(._;>;);\n" + … … 148 130 "[out:xml][timeout:90][bbox:{{bbox}}];\n" + 149 131 "(\n" + 150 " node(user:\"foo\");\n" + 151 " way(user:\"foo\");\n" + 152 " relation(user:\"foo\");\n" + 153 " node(uid:42);\n" + 154 " way(uid:42);\n" + 155 " relation(uid:42);\n" + 132 " nwr(user:\"foo\");\n" + 133 " nwr(uid:42);\n" + 156 134 ");\n" + 157 135 "(._;>;);\n" + … … 184 162 "{{geocodeArea:Josmland}}->.searchArea;\n" + 185 163 "(\n" + 186 " node[\"foo\"=\"bar\"](area.searchArea);\n" + 187 " way[\"foo\"=\"bar\"](area.searchArea);\n" + 188 " relation[\"foo\"=\"bar\"](area.searchArea);\n" + 164 " nwr[\"foo\"=\"bar\"](area.searchArea);\n" + 189 165 ");\n" + 190 166 "(._;>;);\n" + … … 202 178 "[out:xml][timeout:90];\n" + 203 179 "(\n" + 204 " node[\"amenity\"=\"hospital\"];\n" + 205 " way[\"amenity\"=\"hospital\"];\n" + 206 " relation[\"amenity\"=\"hospital\"];\n" + 180 " nwr[\"amenity\"=\"hospital\"];\n" + 207 181 ");\n" + 208 182 "(._;>;);\n" +
Note:
See TracChangeset
for help on using the changeset viewer.