Skip to content

Commit

Permalink
Cleanup: AthensTransformTest>>transformClass should be in accessing
Browse files Browse the repository at this point in the history
Fix  #16627
  • Loading branch information
astares committed May 13, 2024
1 parent 9d7a59e commit f2864ed
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
3 changes: 2 additions & 1 deletion src/Athens-Cairo-Tests/AthensCairoMatrixTest.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ AthensCairoMatrixTest >> testInverted [
self assert: m getHandle ~~ m inverted getHandle
]

{ #category : 'tests' }
{ #category : 'accessing' }
AthensCairoMatrixTest >> transformClass [

^ AthensCairoMatrix
]
3 changes: 2 additions & 1 deletion src/Athens-Core-Tests/AthensAffineTransformTest.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ Class {
#tag : 'Transforms'
}

{ #category : 'tests' }
{ #category : 'accessing' }
AthensAffineTransformTest >> transformClass [

^ AthensAffineTransform
]
3 changes: 2 additions & 1 deletion src/Athens-Core-Tests/AthensProjectiveTransformTest.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ Class {
#tag : 'Transforms'
}

{ #category : 'tests' }
{ #category : 'accessing' }
AthensProjectiveTransformTest >> transformClass [

^ AthensProjectiveTransform
]
5 changes: 3 additions & 2 deletions src/Athens-Core-Tests/AthensTransformTest.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,8 @@ AthensTransformTest >> testTranslateXY [
self assert: (transform transform: -2 @ -5) equals: -1 @ -3
]

{ #category : 'tests' }
{ #category : 'accessing' }
AthensTransformTest >> transformClass [
self subclassResponsibility

^ self subclassResponsibility
]

0 comments on commit f2864ed

Please sign in to comment.