Skip to content

Commit

Permalink
fix tests with free budget
Browse files Browse the repository at this point in the history
  • Loading branch information
Durieux Pol committed Apr 10, 2024
1 parent 5e55547 commit ff4f2bb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ MTCoveragePropagationPreparationTest >> testWorking [
| analysis moreInfo mutant |
analysis := MTAnalysis new
testClasses: { MTCIHelperTest };
classesToMutate: { MTCIHelper }.
classesToMutate: { MTCIHelper };
budget: MTFreeBudget new.
analysis run.

moreInfo := MTCoveragePropagationPreparation new
Expand Down
4 changes: 3 additions & 1 deletion src/MuTalk-Utilities-Tests/MTMatrixTest.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ MTMatrixTest >> setUp [
super setUp.
matrix := MTMatrix forClasses: { MTAuxiliarClassForMatrix }.
matrix setUpAnalysis.
matrix analysis operators: MTAbstractMutantOperator contents.
matrix analysis
operators: MTAbstractMutantOperator contents;
budget: MTFreeBudget new.
matrix build.
self setUpVariablesForTest
]
Expand Down

0 comments on commit ff4f2bb

Please sign in to comment.