[squeak-dev] The Inbox: Tests-ct.412.mcz

commits at source.squeak.org commits at source.squeak.org
Sun Jun 30 12:11:29 UTC 2019


A new version of Tests was added to project The Inbox:
http://source.squeak.org/inbox/Tests-ct.412.mcz

==================== Summary ====================

Name: Tests-ct.412
Author: ct
Time: 30 June 2019, 2:11:26.54843 pm
UUID: 24e0c844-757d-1246-a348-a0372f66d993
Ancestors: Tests-pre.411

Add tests for SyntaxErrorNotification>>#resume:

=============== Diff against Tests-pre.411 ===============

Item was added:
+ ----- Method: CompilerSyntaxErrorNotifyingTest>>testResumeEarlySyntaxError (in category 'tests') -----
+ testResumeEarlySyntaxError
+ 
+ 	| result |
+ 	result := [Compiler evaluate: '''''''']
+ 		on: SyntaxErrorNotification
+ 		do: [:ex | ex resume: ''''''''''].
+ 	self assert: '''' equals: result!

Item was added:
+ ----- Method: CompilerSyntaxErrorNotifyingTest>>testResumeLateSyntaxError (in category 'tests') -----
+ testResumeLateSyntaxError
+ 
+ 	| result |
+ 	result := [Compiler evaluate: '6*:7']
+ 		on: SyntaxErrorNotification
+ 		do: [:ex | ex resume: '6*7'].
+ 	self assert: 42 equals: result!



More information about the Squeak-dev mailing list