[squeak-dev] The Inbox: Tests-fbs.177.mcz

commits at source.squeak.org commits at source.squeak.org
Tue Jan 1 21:47:46 UTC 2013


A new version of Tests was added to project The Inbox:
http://source.squeak.org/inbox/Tests-fbs.177.mcz

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

Name: Tests-fbs.177
Author: fbs
Time: 1 January 2013, 9:47:32.944 pm
UUID: c62626fc-46a7-4855-9627-9ab29bb57ac2
Ancestors: Tests-ar.176

Tests for Lars' Mantis report #7709: Image Segments can't be written to file anymore.

=============== Diff against Tests-ar.176 ===============

Item was changed:
  SystemOrganization addCategory: #'Tests-Exceptions'!
  SystemOrganization addCategory: #'Tests-Files'!
  SystemOrganization addCategory: #'Tests-Compiler'!
  SystemOrganization addCategory: #'Tests-Digital Signatures'!
  SystemOrganization addCategory: #'Tests-Object Events'!
  SystemOrganization addCategory: #'Tests-System-Support'!
  SystemOrganization addCategory: #'Tests-Bugs'!
+ SystemOrganization addCategory: #'Tests-System-Object Storage'!
  SystemOrganization addCategory: #'Tests-ObjectsAsMethods'!
  SystemOrganization addCategory: #'Tests-PrimCallController'!
  SystemOrganization addCategory: #'Tests-Release'!
  SystemOrganization addCategory: #'Tests-Utilities'!
  SystemOrganization addCategory: #'Tests-VM'!
  SystemOrganization addCategory: #'Tests-Hex'!
  SystemOrganization addCategory: #'Tests-Monticello'!
  SystemOrganization addCategory: #'Tests-Localization'!
  SystemOrganization addCategory: #'Tests-FilePackage'!
  SystemOrganization addCategory: #'Tests-Finalization'!
  SystemOrganization addCategory: #'Tests-Dependencies'!
  SystemOrganization addCategory: #'Tests-Monticello-Mocks'!
  SystemOrganization addCategory: #'Tests-Environments'!
  SystemOrganization addCategory: #'Tests-Monticello-Utils'!

Item was added:
+ TestCase subclass: #ImageSegmentTest
+ 	instanceVariableNames: ''
+ 	classVariableNames: ''
+ 	poolDictionaries: ''
+ 	category: 'Tests-System-Object Storage'!

Item was added:
+ ----- Method: ImageSegmentTest>>testImageSegmentsShouldBeWritableToaFile (in category 'as yet unclassified') -----
+ testImageSegmentsShouldBeWritableToaFile
+ 	self shouldnt: [
+ 		ImageSegment new
+ 		copyFromRoots: (Array with: TestCase) sizeHint: 100;
+ 		extract;
+ 		writeToFile: 'TestCase';
+ 		yourself] raise: Error.!



More information about the Squeak-dev mailing list