forked from pharo-contributions/mutalk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Durieux Pol
committed
Jan 26, 2024
1 parent
940ad87
commit d969f87
Showing
2 changed files
with
44 additions
and
14 deletions.
There are no files selected for viewing
20 changes: 20 additions & 0 deletions
20
src/MuTalk-Utilities-Tests/MTAuxiliarClassForMutantOperatorAnalysis.class.st
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
Class { | ||
#name : 'MTAuxiliarClassForMutantOperatorAnalysis', | ||
#superclass : 'Object', | ||
#category : 'MuTalk-Utilities-Tests', | ||
#package : 'MuTalk-Utilities-Tests' | ||
} | ||
|
||
{ #category : 'as yet unclassified' } | ||
MTAuxiliarClassForMutantOperatorAnalysis >> methodA [ | ||
|
||
| result | | ||
result := 1 + 1. | ||
^ result | ||
] | ||
|
||
{ #category : 'as yet unclassified' } | ||
MTAuxiliarClassForMutantOperatorAnalysis >> methodB [ | ||
|
||
false ifFalse: [ ^ 1 ] | ||
] |
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