Skip to content

Commit

Permalink
Fix not working tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Nyan11 committed Jan 25, 2024
1 parent 898aac2 commit 40c4554
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ PyramidFlowLayoutOrientationPresenterTest >> expectedMixedValues [
{ #category : #tests }
PyramidFlowLayoutOrientationPresenterTest >> makeNewInput [

^ PyramidAbstractLayoutOrientationPresenter new
^ PyramidFlowLayoutOrientationPresenter new
]

{ #category : #'as yet unclassified' }
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
Class {
#name : #PyramidLinearLayoutOrientationPresenterTest,
#superclass : #TestCase,
#traits : 'TPyramidInputPresenterTest',
#classTraits : 'TPyramidInputPresenterTest classTrait',
#category : #'Pyramid-Tests-cases-specs-custom'
}

{ #category : #accessing }
PyramidLinearLayoutOrientationPresenterTest >> dummyValues [

^ {
BlLinearLayoutHorizontalOrientation new.
BlLinearLayoutVerticalOrientation new.
BlLinearLayoutHorizontalOrientation new.
BlLinearLayoutVerticalOrientation new.
BlLinearLayoutHorizontalOrientation new }
]

{ #category : #accessing }
PyramidLinearLayoutOrientationPresenterTest >> expectedEmptyValue [

^ PyramidUnknowState new
]

{ #category : #accessing }
PyramidLinearLayoutOrientationPresenterTest >> expectedMixedValues [

^ PyramidUnknowState new
]

{ #category : #tests }
PyramidLinearLayoutOrientationPresenterTest >> makeNewInput [

^ PyramidLinearLayoutOrientationPresenter new
]

{ #category : #'as yet unclassified' }
PyramidLinearLayoutOrientationPresenterTest >> triggerValueChangedOf: anInput [

anInput button click
]

0 comments on commit 40c4554

Please sign in to comment.