[Pkg] The Trunk: EToys-topa.120.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Apr 2 09:03:51 UTC 2015


Tobias Pape uploaded a new version of EToys to project The Trunk:
http://source.squeak.org/trunk/EToys-topa.120.mcz

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

Name: EToys-topa.120
Author: topa
Time: 2 April 2015, 11:03:30.931 am
UUID: 759ddd88-411c-4504-a67c-89f0fb6f09f9
Ancestors: EToys-bf.119

Make sure we have a SoundSystem when testing sound.

(Alas, DummySoundSystem doesn't cut it here)

=============== Diff against EToys-bf.119 ===============

Item was changed:
  TestCase subclass: #TileMorphTest
+ 	instanceVariableNames: 'soundSystemBackup'
- 	instanceVariableNames: ''
  	classVariableNames: ''
  	poolDictionaries: ''
  	category: 'Etoys-Tests'!

Item was added:
+ ----- Method: TileMorphTest>>setUp (in category 'running') -----
+ setUp
+ 
+ 	self soundSystemBackup: SoundService defaultOrNil.
+ 	SoundService default: BaseSoundSystem.!

Item was added:
+ ----- Method: TileMorphTest>>soundSystemBackup (in category 'accessing') -----
+ soundSystemBackup
+ 
+ 	^ soundSystemBackup!

Item was added:
+ ----- Method: TileMorphTest>>soundSystemBackup: (in category 'accessing') -----
+ soundSystemBackup: anObject
+ 
+ 	soundSystemBackup := anObject!

Item was added:
+ ----- Method: TileMorphTest>>tearDown (in category 'running') -----
+ tearDown
+ 
+ 	SoundService default: self soundSystemBackup.!



More information about the Packages mailing list