The Trunk: EToys-topa.120.mcz

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

The Trunk: EToys-topa.120.mcz

commits-2
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.!