You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In a model of AIVectorTest generated in Moose 12
the method testUnitVector as several comments:
AIVectorTest>> testUnitVector
"comment stating purpose of message""no longer double in pharo""self assert: v unitVector length asFloat = 1.0d asFloat. self assert: w unitVector length asFloat = 1.0d asFloat"selfassert: v unitVector length asFloat equals:1.0"here,something special in pharo. Those two floats have the same values but the egality test return false ""self assert: (tmp := w unitVector length asFloat) = 1.0."
But the FamixStMethod has only 3 FamixStComment:
"comment stating purpose of message"
"no longer double in pharo"
"self assert: v unitVector length asFloat = 1.0d asFloat...
The last one is not there
maybe because it is the end of the method?
The text was updated successfully, but these errors were encountered:
In a model of
AIVectorTest
generated in Moose 12the method
testUnitVector
as several comments:But the FamixStMethod has only 3 FamixStComment:
"comment stating purpose of message"
"no longer double in pharo"
"self assert: v unitVector length asFloat = 1.0d asFloat...
The last one is not there
maybe because it is the end of the method?
The text was updated successfully, but these errors were encountered: