Changeset 30555 in osm for applications
- Timestamp:
- 2014-08-04T19:06:50+02:00 (10 years ago)
- Location:
- applications/editors/josm/plugins/turnrestrictions/test/unit/org/openstreetmap/josm/plugins/turnrestrictions
- Files:
-
- 1 deleted
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/turnrestrictions/test/unit/org/openstreetmap/josm/plugins/turnrestrictions/TurnRestrictionBuilderTest.groovy
r23593 r30555 11 11 import org.openstreetmap.josm.data.osm.Relation; 12 12 import org.openstreetmap.josm.data.osm.RelationMember; 13 import org.openstreetmap.josm. plugins.turnrestrictions.fixtures.JOSMFixture;13 import org.openstreetmap.josm.JOSMFixture; 14 14 import org.openstreetmap.josm.data.coor.LatLon; 15 15 import static org.openstreetmap.josm.plugins.turnrestrictions.TurnRestrictionBuilder.* … … 383 383 384 384 /* 385 * if reversed from, the intersection angle is still -90 °385 * if reversed from, the intersection angle is still -90� 386 386 */ 387 387 from = nw(1,n2,n1) … … 393 393 394 394 /* 395 * if reversed to, the intersection angle is still -90 °395 * if reversed to, the intersection angle is still -90� 396 396 */ 397 397 from = nw(1,n1,n2) … … 403 403 404 404 /* 405 * if reversed both, the intersection angle is still -90 °405 * if reversed both, the intersection angle is still -90� 406 406 */ 407 407 from = nw(1,n2,n1) … … 436 436 437 437 /* 438 * if reversed from, the intersection angle is still 90 °438 * if reversed from, the intersection angle is still 90� 439 439 */ 440 440 from = nw(1,n2,n1) … … 444 444 445 445 /* 446 * if reversed to, the intersection angle is still 90 °446 * if reversed to, the intersection angle is still 90� 447 447 */ 448 448 from = nw(1,n1,n2) … … 452 452 453 453 /* 454 * if reversed both, the intersection angle is still 90 °454 * if reversed both, the intersection angle is still 90� 455 455 */ 456 456 from = nw(1,n2,n1) -
applications/editors/josm/plugins/turnrestrictions/test/unit/org/openstreetmap/josm/plugins/turnrestrictions/editor/JosmSelectionListModelTest.groovy
r23571 r30555 8 8 import org.openstreetmap.josm.data.osm.*; 9 9 import org.openstreetmap.josm.data.coor.*; 10 11 import org.openstreetmap.josm.plugins.turnrestrictions.fixtures.JOSMFixture; 10 import org.openstreetmap.josm.JOSMFixture; 12 11 13 12 import static org.junit.Assert.*; -
applications/editors/josm/plugins/turnrestrictions/test/unit/org/openstreetmap/josm/plugins/turnrestrictions/editor/TurnRestrictionEditorModelUnitTest.groovy
r23510 r30555 16 16 import org.openstreetmap.josm.gui.layer.OsmDataLayer; 17 17 18 import org.openstreetmap.josm. plugins.turnrestrictions.fixtures.JOSMFixture;18 import org.openstreetmap.josm.JOSMFixture; 19 19 20 20 /** -
applications/editors/josm/plugins/turnrestrictions/test/unit/org/openstreetmap/josm/plugins/turnrestrictions/editor/TurnRestrictionLegEditorUnitTest.groovy
r23510 r30555 6 6 import org.openstreetmap.josm.gui.layer.OsmDataLayer; 7 7 8 import org.openstreetmap.josm. plugins.turnrestrictions.fixtures.JOSMFixture;8 import org.openstreetmap.josm.JOSMFixture; 9 9 10 10 import static org.junit.Assert.*; -
applications/editors/josm/plugins/turnrestrictions/test/unit/org/openstreetmap/josm/plugins/turnrestrictions/editor/TurnRestrictionTypeRendererTest.groovy
r23510 r30555 7 7 8 8 import java.awt.Component 9 import org.openstreetmap.josm. plugins.turnrestrictions.fixtures.JOSMFixture;9 import org.openstreetmap.josm.JOSMFixture; 10 10 11 11 class TurnRestrictionTypeRendererTest extends GroovyTestCase{
Note:
See TracChangeset
for help on using the changeset viewer.