Skip to content

Commit

Permalink
rename
Browse files Browse the repository at this point in the history
  • Loading branch information
Durieux Pol committed Dec 14, 2023
1 parent a2369c3 commit 9b20a74
Showing 1 changed file with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,16 @@ MutationTestingPercentageOfMutantsBudgetTest >> testEvaluateZeroPercentOfMutants
equals: 0
]

{ #category : 'tests' }
MutationTestingPercentageOfMutantsBudgetTest >> testExactPercentageOfMutants [

self runAnalysisFor: 20.
self
assert:
analysis generalResult numberOfEvaluatedMutants / numberOfMutations * 100
equals: 20
]

{ #category : 'tests' }
MutationTestingPercentageOfMutantsBudgetTest >> testNonExactPercentageOfMutants [

Expand All @@ -61,13 +71,3 @@ MutationTestingPercentageOfMutantsBudgetTest >> testNonExactPercentageOfMutants
assert: analysis generalResult numberOfEvaluatedMutants
equals: 6
]

{ #category : 'tests' }
MutationTestingPercentageOfMutantsBudgetTest >> testRoundPercentageOfMutants [

self runAnalysisFor: 20.
self
assert:
analysis generalResult numberOfEvaluatedMutants / numberOfMutations * 100
equals: 20
]

0 comments on commit 9b20a74

Please sign in to comment.