The Inbox: MorphicTests-ar.18.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Inbox: MorphicTests-ar.18.mcz

commits-2
A new version of MorphicTests was added to project The Inbox:
http://source.squeak.org/inbox/MorphicTests-ar.18.mcz

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

Name: MorphicTests-ar.18
Author: ar
Time: 30 December 2010, 5:55:31.198 pm
UUID: 06939120-a4b4-f440-b0c3-bfe61fdc899e
Ancestors: MorphicTests-ar.17

Add a test for the default clipRect in a FormCanvas.

=============== Diff against MorphicTests-ar.17 ===============

Item was added:
+ ----- Method: FormCanvasTest>>testDefaultClipRect (in category 'tests') -----
+ testDefaultClipRect
+
+ self assert: (FormCanvas extent: 222@111) clipRect = (0@0 corner: 222@111).
+ self assert: (FormCanvas extent: 2222@11) clipRect = (0@0 corner: 2222@11).
+ self assert: (FormCanvas extent: 22222@1) clipRect = (0@0 corner: 22222@1).
+ !