smalltalk
/
osmo-st-all
Archived
1
0
Fork 0
This repository has been archived on 2022-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
osmo-st-all/grease/Tests/Core/GRNotificationStub.st

24 lines
322 B
Smalltalk

GRNotification subclass: GRNotificationStub [
| foo |
<comment: nil>
<category: 'Grease-Tests-Core'>
defaultAction [
<category: 'accessing'>
^#returnValue
]
foo [
<category: 'accessing'>
^foo
]
initialize [
<category: 'initialization'>
super initialize.
foo := true
]
]