File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed
Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -315,7 +315,17 @@ GeoViewElementTest >> testInteractionsStrategyDefaultValues [
315315
316316 self assert: geoView interactionsStrategy allowMapMoving.
317317 self assert: geoView interactionsStrategy allowMapScaling.
318- self assert: geoView interactionsStrategy isMultipleSelection
318+ self assert: geoView interactionsStrategy isMultipleSelection.
319+ self assert: geoView interactionsStrategy selectionFilterBlock equals: nil
320+ ]
321+
322+ { #category : #tests }
323+ GeoViewElementTest >> testInteractionsStrategySelectionFilter [
324+
325+ self assert: geoView interactionsStrategy selectionFilterBlock equals: nil .
326+ geoView interactionsStrategy selectionFilterBlock: [ :e | ].
327+ self assert: geoView interactionsStrategy selectionFilterBlock notNil.
328+
319329]
320330
321331{ #category : #tests }
You can’t perform that action at this time.
0 commit comments