libs-steptalk/Testing/Smalltalk/observer.st
Stefan Urbanek 81d85158bc Added few tests
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/steptalk/trunk@15652 72102866-910b-0410-8b05-ffd578937521
2003-01-20 16:00:59 +00:00

24 lines
411 B
Smalltalk

[|
main
|center|
center := NSDistributedNotificationCenter defaultCenter.
Transcript showLine:'Registering'.
center addObserver:self
selector:#notification:
name:nil
object:'s'.
NSRunLoop currentRunLoop run.
!
notification:notif
Transcript showLine:'Notification received: ', (notif description).
^self
]