Commit 7871b49 Durieux Pol
committed
1 parent 12e7953 commit 7871b49 Copy full SHA for 7871b49
File tree 1 file changed +17
-0
lines changed
1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -224,6 +224,13 @@ MTAnalysis >> operators: anObject [
224
224
operators := anObject
225
225
]
226
226
227
+ { #category : ' accessing' }
228
+ MTAnalysis >> packageToMutate: aCollectionOfPackages [
229
+
230
+ modelClasses := aCollectionOfPackages flatCollect: [ :packageName |
231
+ packageName asPackage definedClasses ]
232
+ ]
233
+
227
234
{ #category : ' running' }
228
235
MTAnalysis >> run [
229
236
" Obtain mutants applying the operators in the classes (or
@@ -307,6 +314,16 @@ MTAnalysis >> testFilter: anObject [
307
314
testFilter := anObject
308
315
]
309
316
317
+ { #category : ' accessing' }
318
+ MTAnalysis >> testPackages: aCollectionOfPackages [
319
+
320
+ | testClasses |
321
+ testClasses := aCollectionOfPackages flatCollect: [ :packageName |
322
+ packageName asPackage definedClasses select:
323
+ #isTestCase ].
324
+ self testClasses: testClasses
325
+ ]
326
+
310
327
{ #category : ' accessing' }
311
328
MTAnalysis >> testSelectionStrategy [
312
329
You can’t perform that action at this time.
0 commit comments