[squeak-dev] FFI: FFI-Tests-mt.63.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Aug 19 09:14:00 UTC 2021


Marcel Taeumel uploaded a new version of FFI-Tests to project FFI:
http://source.squeak.org/FFI/FFI-Tests-mt.63.mcz

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

Name: FFI-Tests-mt.63
Author: mt
Time: 19 August 2021, 11:13:58.859627 am
UUID: cb1940fa-b6fa-de43-976a-7f20aa39b120
Ancestors: FFI-Tests-mt.62

Complements FFI-Kernel-mt.215.

=============== Diff against FFI-Tests-mt.62 ===============

Item was added:
+ ----- Method: FFIImageTests>>test06AllTypes (in category 'tests') -----
+ test06AllTypes
+ 	"Check uniqueness of all known types."
+ 	
+ 	| set |
+ 	set := Set new.
+ 	ExternalType allTypesDo: [:type |
+ 		self assert: (set ifAbsentAdd: type)].!

Item was added:
+ ----- Method: FFIImageTests>>test07AllTypeNames (in category 'tests') -----
+ test07AllTypeNames
+ 	"Check uniqueness of all known type names."
+ 
+ 	| set |
+ 	set := Set new.
+ 	ExternalType allTypesDo: [:type |
+ 		self assert: (set ifAbsentAdd: type typeName)].!



More information about the Squeak-dev mailing list