File tree 1 file changed +14
-2
lines changed
1 file changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -137,7 +137,7 @@ MTAnalysis >> generateCoverageAnalysis [
137
137
MTAnalysis >> generateMutations [
138
138
139
139
^ mutations ifNil: [
140
- logger logStartMutationGeneration: self methodSize .
140
+ logger logStartMutationGeneration: self methodsCount .
141
141
mutations := mutantGenerationStrategy
142
142
mutationsFor: self
143
143
loggingIn: logger.
@@ -217,7 +217,7 @@ MTAnalysis >> logger: anObject [
217
217
]
218
218
219
219
{ #category : ' accessing' }
220
- MTAnalysis >> methodSize [
220
+ MTAnalysis >> methodsCount [
221
221
222
222
^ (self modelClasses flatCollect: #methods ) size
223
223
]
@@ -260,6 +260,18 @@ MTAnalysis >> mutantResults [
260
260
^ mutantResults
261
261
]
262
262
263
+ { #category : ' accessing' }
264
+ MTAnalysis >> mutantSelectionStrategy [
265
+
266
+ ^ mutantGenerationStrategy mutantSelectionStrategy
267
+ ]
268
+
269
+ { #category : ' accessing' }
270
+ MTAnalysis >> mutantSelectionStrategy: anObject [
271
+
272
+ mutantGenerationStrategy mutantSelectionStrategy: anObject
273
+ ]
274
+
263
275
{ #category : ' accessing' }
264
276
MTAnalysis >> mutations [
265
277
You can’t perform that action at this time.
0 commit comments