[Pkg] The Trunk: Tests-pre.420.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Oct 2 13:15:39 UTC 2019


Patrick Rein uploaded a new version of Tests to project The Trunk:
http://source.squeak.org/trunk/Tests-pre.420.mcz

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

Name: Tests-pre.420
Author: pre
Time: 2 October 2019, 3:15:32.306738 pm
UUID: 3989d8ae-f068-3743-b798-10cb9af692c7
Ancestors: Tests-ct.419

Adds isSimpleSetter and asSimpleSetter tests

=============== Diff against Tests-ct.419 ===============

Item was added:
+ TestCase subclass: #StringSystemSupportTest
+ 	instanceVariableNames: ''
+ 	classVariableNames: ''
+ 	poolDictionaries: ''
+ 	category: 'Tests-System-Support'!

Item was added:
+ ----- Method: StringSystemSupportTest>>testAsSimpleSetter (in category 'tests') -----
+ testAsSimpleSetter
+ 	self 
+ 		assert: #x asSimpleSetter = #x: ;
+ 		assert: #x: asSimpleSetter = #x: ;
+ 		assert: #x asSimpleSetter isSymbol!

Item was added:
+ ----- Method: StringSystemSupportTest>>testIsSimpleSetter (in category 'tests') -----
+ testIsSimpleSetter
+ 	self 
+ 		assert: #x: isSimpleSetter ;
+ 		deny: #x isSimpleSetter ;
+ 		deny: #+ isSimpleSetter ;
+ 		deny: #a:b: isSimpleSetter!



More information about the Packages mailing list