Skip to content

Commit ad394c8

Browse files
authored
Merge pull request #78 from guillep/better-inspetors
Add result inspetors for killed and terminated mutants
2 parents 2e3ec99 + 5884124 commit ad394c8

File tree

1 file changed

+16
-2
lines changed

1 file changed

+16
-2
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,22 @@
11
Extension { #name : 'MTGeneralResult' }
22

33
{ #category : '*MuTalk-SpecUI' }
4-
MTGeneralResult >> inspectorExtension [
4+
MTGeneralResult >> killedMutantsExtension [
55

6-
<inspectorPresentationOrder: 0 title: 'Mutation Results'>
6+
<inspectorPresentationOrder: 1 title: 'Killed Mutants'>
7+
^ MTMutationResultsPresenter on: self killedMutants
8+
]
9+
10+
{ #category : '*MuTalk-SpecUI' }
11+
MTGeneralResult >> survivingMutantsExtension [
12+
13+
<inspectorPresentationOrder: 0 title: 'Surviving Mutants'>
714
^ MTMutationResultsPresenter on: self aliveMutants
815
]
16+
17+
{ #category : '*MuTalk-SpecUI' }
18+
MTGeneralResult >> terminatedMutantsExtension [
19+
20+
<inspectorPresentationOrder: 2 title: 'Terminated Mutants'>
21+
^ MTMutationResultsPresenter on: self terminatedMutants
22+
]

0 commit comments

Comments
 (0)