Skip to content

Commit

Permalink
decided to start the budget at the start of run rather than `genera…
Browse files Browse the repository at this point in the history
…teResults` (only relevant for time budget)
  • Loading branch information
Durieux Pol committed Dec 4, 2023
1 parent 58d524d commit 3f91321
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/MuTalk-Model/MutationTestingAnalysis.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,6 @@ MutationTestingAnalysis >> generateMutations [
MutationTestingAnalysis >> generateResults [

particularResults := OrderedCollection new.
budget start.
mutations
do: [ :aMutation |
logger logStartEvaluating: aMutation.
Expand Down Expand Up @@ -358,7 +357,8 @@ MutationTestingAnalysis >> run [
methods of
those classes) and execute all mutants in the set of testClases.
We obtain a result for each mutant generated"
^[self initialTestRun.
^[budget start.
self initialTestRun.
logger logAnalysisStartFor:self.
elapsedTime := Time millisecondsToRun: [
self generateCoverageAnalysis.
Expand Down

0 comments on commit 3f91321

Please sign in to comment.