Comment #4 on issue 706 by fabrizio...(a)gmail.com: Replace <property: ... >
pragmas with <MSEProperty: ...> ones
http://code.google.com/p/moose-technology/issues/detail?id=706
Hi,
i was doing this change. Do i have to adapt the tests to?
E.g.
testAttributeMetrics
| attribute1 attribute2 |
attribute1 := self model entityNamed: #'Smalltalk::LANInterface.nextNode'.
attribute2 := self model entityNamed:
#'Smalltalk::LANOutputServer.serverType'.
self assert: (attribute1 propertyNamed: #NAA) = 3.
self assert: attribute1 numberOfAccesses = 3.
......
Became:
testAttributeMetrics
| attribute1 attribute2 |
attribute1 := self model entityNamed: #'Smalltalk::LANInterface.nextNode'.
attribute2 := self model entityNamed:
#'Smalltalk::LANOutputServer.serverType'.
self assert: (attribute1 propertyNamed: #numberOfAccesses) = 3.
self assert: attribute1 numberOfAccesses = 3.
........