[squeak-dev] The Trunk: MorphicTests-pre.81.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Nov 10 14:17:02 UTC 2021


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

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

Name: MorphicTests-pre.81
Author: pre
Time: 10 November 2021, 3:17:01.256616 pm
UUID: f6cba33e-ac48-bf49-aa5a-6af8da18f92d
Ancestors: MorphicTests-mt.80

Recategorizes uncategorized or miscategorized methods.

=============== Diff against MorphicTests-mt.80 ===============

Item was changed:
+ ----- Method: CircleMorphTest>>setUp (in category 'running') -----
- ----- Method: CircleMorphTest>>setUp (in category 'initialize-release') -----
  setUp
  	morph := CircleMorph new!

Item was changed:
+ ----- Method: SystemWindowTest>>setUp (in category 'running') -----
- ----- Method: SystemWindowTest>>setUp (in category 'as yet unclassified') -----
  setUp
  
  	super setUp.
  	sut := SystemWindow new.!

Item was changed:
+ ----- Method: SystemWindowTest>>test01Culling (in category 'tests') -----
- ----- Method: SystemWindowTest>>test01Culling (in category 'as yet unclassified') -----
  test01Culling
  	"Check whether system windows follow the specs for occlusion culling. See WorldState >> #drawWorld:submorphs:invalidAreasOn: and Morph >> #areasRemainingToFill:."
  	
  	sut extent: 500 at 500; fullBounds.
  	sut cornerStyle: #square.
  	
  	self assert: (sut areasRemainingToFill: (20 at 20 center: sut center)) isEmpty.
  	self assert: (sut areasRemainingToFill: sut bounds) isEmpty.
  	self assert: (sut areasRemainingToFill: sut outerBounds) isEmpty.
  	self assert: (sut areasRemainingToFill: sut fullBounds) isEmpty.!

Item was changed:
+ ----- Method: TextLineTest>>setUp (in category 'running') -----
- ----- Method: TextLineTest>>setUp (in category 'initialize-release') -----
  setUp
  	super setUp.
  	prototypes
  		add: (TextLine
  				start: 1
  				stop: 50
  				internalSpaces: 2
  				paddingWidth: 1) !

Item was changed:
+ ----- Method: TextMorphTest>>testInitialize (in category 'tests') -----
- ----- Method: TextMorphTest>>testInitialize (in category 'testing') -----
  testInitialize
  	"For now, just make sure initialization doesn't throw exception"
  	TextMorph initialize.!



More information about the Squeak-dev mailing list