Skip to content

Commit

Permalink
Merge a1f7085 into fb433fd
Browse files Browse the repository at this point in the history
  • Loading branch information
JanFehse committed Jun 24, 2022
2 parents fb433fd + a1f7085 commit 1d58ad6
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
tests
testSpecGetSelectedPathUnsupported

|pluggableTreeSpec bool|

pluggableTreeSpec := MEXPluggableMultiSelectionTreeSpec new.
bool := false.
[pluggableTreeSpec getSelectedPath: nil]
on: MEXUnsupportedError
do: [:error| bool := true].
self assert: bool equals: true.

bool := false.
[pluggableTreeSpec getSelectedPath]
on: MEXUnsupportedError
do: [:error| bool := true].
self assert: bool equals: true.


Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"class" : {
},
"instance" : {
"testSpecGetSelectedPathUnsupported" : "JF 6/24/2022 12:05",
"testSpecGetSelectedUnsupported" : "JF 6/24/2022 11:47",
"testSpecSetSelectedPathUnsupported" : "JF 6/24/2022 11:45",
"testSpecautoDeselectUnsupported" : "JF 6/24/2022 11:42",
Expand Down

0 comments on commit 1d58ad6

Please sign in to comment.