[squeak-dev] The Trunk: Tests-mt.492.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Jun 16 13:18:51 UTC 2022


Marcel Taeumel uploaded a new version of Tests to project The Trunk:
http://source.squeak.org/trunk/Tests-mt.492.mcz

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

Name: Tests-mt.492
Author: mt
Time: 16 June 2022, 3:18:50.173458 pm
UUID: e3bc53e9-878f-0d4c-b8ad-d7ca1c756573
Ancestors: Tests-mt.491

Flag a 100%-only test.

=============== Diff against Tests-mt.491 ===============

Item was changed:
  ----- Method: ReleaseTest>>testSqueakThemeFonts (in category 'tests') -----
  testSqueakThemeFonts
  	"Check whether the fonts installed in the active theme in the release are correct"
  	
+ 	RealEstateAgent scaleFactor = 1 ifFalse: [^ self].
+ 	
  	"preference selector - font family name - font size" 
  	{	#(standardDefaultTextFont 'Bitmap DejaVu Sans' 10.5).
  		#(standardListFont 'Bitmap DejaVu Sans' 10.5).
  		#(standardFlapFont 'Bitmap DejaVu Sans' 7.5).
  		#(standardMenuFont 'Bitmap DejaVu Sans' 10.5).
  		#(windowTitleFont 'Bitmap DejaVu Sans' 10.5).
  		#(standardBalloonHelpFont 'Bitmap DejaVu Sans' 7.5).
  		#(standardCodeFont 'Bitmap DejaVu Sans' 10.5).
  		#(standardButtonFont 'Bitmap DejaVu Sans' 7.5) }
  			do: [:triple | | font |
  				font := Preferences perform: triple first.
  				self assert: triple second equals: font familyName.
  				self assert: triple third equals: font pointSize ]!



More information about the Squeak-dev mailing list