We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a01e7c9 commit fd04a66Copy full SHA for fd04a66
src/MuTalk-Model/MTAnalysis.class.st
@@ -130,7 +130,7 @@ MTAnalysis >> generateCoverageAnalysis [
130
MTAnalysis >> generateMutations [
131
132
^ mutations ifNil: [
133
- logger logStartMutationGeneration: self methodSize.
+ logger logStartMutationGeneration: self methodsCount.
134
mutations := mutantGenerationStrategy
135
mutationsFor: self
136
loggingIn: logger.
@@ -208,8 +208,8 @@ MTAnalysis >> logger: anObject [
208
logger := anObject
209
]
210
211
-{ #category : 'as yet unclassified' }
212
-MTAnalysis >> methodSize [
+{ #category : 'accessing' }
+MTAnalysis >> methodsCount [
213
214
^ (self modelClasses flatCollect: #methods) size
215
0 commit comments