-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #78 from guillep/better-inspetors
Add result inspetors for killed and terminated mutants
- Loading branch information
Showing
1 changed file
with
16 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,22 @@ | ||
Extension { #name : 'MTGeneralResult' } | ||
|
||
{ #category : '*MuTalk-SpecUI' } | ||
MTGeneralResult >> inspectorExtension [ | ||
MTGeneralResult >> killedMutantsExtension [ | ||
|
||
<inspectorPresentationOrder: 0 title: 'Mutation Results'> | ||
<inspectorPresentationOrder: 1 title: 'Killed Mutants'> | ||
^ MTMutationResultsPresenter on: self killedMutants | ||
] | ||
|
||
{ #category : '*MuTalk-SpecUI' } | ||
MTGeneralResult >> survivingMutantsExtension [ | ||
|
||
<inspectorPresentationOrder: 0 title: 'Surviving Mutants'> | ||
^ MTMutationResultsPresenter on: self aliveMutants | ||
] | ||
|
||
{ #category : '*MuTalk-SpecUI' } | ||
MTGeneralResult >> terminatedMutantsExtension [ | ||
|
||
<inspectorPresentationOrder: 2 title: 'Terminated Mutants'> | ||
^ MTMutationResultsPresenter on: self terminatedMutants | ||
] |