File tree 2 files changed +28
-0
lines changed
2 files changed +28
-0
lines changed Original file line number Diff line number Diff line change @@ -20,3 +20,5 @@ SqueakDebug.log
20
20
# Metacello-github cache
21
21
/github-cache
22
22
github- * .zip
23
+
24
+ ** /.DS_STORE
Original file line number Diff line number Diff line change
1
+ Metacello new
2
+ githubUser: ' jecisc' project: ' TinyLogger' commitish: ' v1.x.x' path: ' src' ;
3
+ baseline: ' TinyLogger' ;
4
+ load.
5
+
6
+ Metacello new
7
+ baseline: ' MuTalk' ;
8
+ repository: ' github://pavel-krivanek/mutalk/src' ;
9
+ load.
10
+
11
+ analysis := MutationTestingAnalysis
12
+ testCasesFrom: ' TinyLogger-Tests' asPackage definedClasses
13
+ mutating: ' TinyLogger' asPackage definedClasses
14
+ using: MutantOperator contents
15
+ with: AllTestsMethodsRunningMutantEvaluationStrategy new .
16
+ analysis run.
17
+ alive := analysis generalResult aliveMutants.
18
+
19
+ browser := GLMTabulator new .
20
+ browser
21
+ row: #results ;
22
+ row: #diff .
23
+ browser transmit to: #results .
24
+ browser transmit to: #diff ; from: #results ; andShow: [ :a |
25
+ a diff display: [ :mutant | {((RBParser parseMethod: (mutant mutant originalSource)) formattedCode) . ((RBParser parseMethod: (mutant mutant modifiedSource)) formattedCode)}] ].
26
+ browser openOn: alive.
You can’t perform that action at this time.
0 commit comments