Skip to content

Commit

Permalink
Fixing broken tests of the Ston export format.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ducasse committed Sep 12, 2024
1 parent 1023015 commit 48e36b8
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/Microdown-BookTester/MicReferenceChecker.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,10 @@ MicReferenceChecker >> initialize [
results := OrderedCollection new.
references := OrderedCollection new.
anchors := OrderedCollection new.
duplicatedAnchors := OrderedCollection new
duplicatedAnchors := OrderedCollection new.
"by default if the reporter is not set from outside
then it shares the results of this current checker."
reportWriter := MicAnalysisReportWriter new results: results.
]

{ #category : 'testing' }
Expand All @@ -180,6 +183,11 @@ MicReferenceChecker >> report [
^ reportWriter report
]

{ #category : 'reporting' }
MicReferenceChecker >> reportSTONFormat [
^ reportWriter reportSTONFormat
]

{ #category : 'accessing' }
MicReferenceChecker >> reportWriter [

Expand Down

0 comments on commit 48e36b8

Please sign in to comment.