pharo-contributions / mutalk

Mutation Testing in Pharo Smalltalk
20 stars 14 forks source link

Composite test filter #106

Closed DurieuxPol closed 5 months ago

DurieuxPol commented 5 months ago

Added MTCompositeTestFilter to combine several test filters. Use it by giving a collection of filters:

MTCompositeTestFilter for: {
        (MTBlockTestFilter for: [ :testCase |
             testCase selector beginsWith: 'testX' ]).
        (MTPragmaSelectionTestFilter for: #pragma).
        (MTTimeTestFilter for: 10 milliSeconds) }

Also simplified tests for test filters