Skip to content

Commit

Permalink
test added
Browse files Browse the repository at this point in the history
  • Loading branch information
sinahenning committed Jul 16, 2021
1 parent d046bf7 commit 40e37a2
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ testSearchListInvisibleOnEmptySearchBar
view := builder build: overView.
searchBar := (view submorphs select: [:aMorph | aMorph class = PluggableTextMorphPlus]) first.
searchBar setText: ''.
searchBar textEdited: ''.
self assert: overView findSearchListInDependents visible equals: searchBar text notEmpty
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
tests
testSearchListVisibleOnBuildSearchBar

| view searchBar |
view := builder build: overView.
searchBar := (view submorphs select: [:aMorph | aMorph class = PluggableTextMorphPlus]) first.
searchBar setText: 'a'.
searchBar textEdited: 'a'.
self assert: overView findSearchListInDependents visible equals: searchBar text notEmpty
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@
"testAssigningCategoryToSubMethods" : "PM 7/16/2021 10:14",
"testBuildChildrenWithReturnsEmptyCollectionForZeroCategories" : "KT 6/3/2021 18:37",
"testFindSearchListInDependent" : "SH 7/8/2021 15:21",
"testSearchListInvisibleOnEmptySearchBar" : "SH 7/8/2021 15:09",
"testSearchListInvisibleOnEmptySearchBar" : "SH 7/16/2021 16:55",
"testSearchListInvisibleOnOpen" : "SH 7/8/2021 14:58",
"testSearchListVisibleOnBuildSearchBar" : "SH 7/16/2021 16:54",
"testSpecFrameAtForReturnsFullSizedLayoutFrameForOneCategoryAndOneRow" : "KT 6/3/2021 19:34",
"testSpecSizePerRowForReturnsFullSizeForOneCategoryAndOneRow" : "KT 6/3/2021 19:32",
"testSpecsPerRowForReturnsCorrectNumberWhenPassedAFloat" : "lk 7/24/2019 16:55" } }

0 comments on commit 40e37a2

Please sign in to comment.