I'm stumped. Here is my testcase.

theTestArray := #(1.2 3 5.1 7).
self assert: theTestArray  squareOfAllElements = #(1.44 9 26.01 49).

The assert should not fail. On calculating the square of each element is correct. So I did "step into test", shows that the result of the method squareOfAllElements and #(1.44 9 26.01 49) are both the same but assert evaluates to false. why? What am I doing wrong here? Any help is appreciated.

link|improve this question

67% accept rate
feedback

2 Answers

up vote 8 down vote accepted

You are dealing with floating point numbers here. Floating point numbers are inexact by definition and you should never compare them using #=.

For details check Section 1.1 of the draft chapter on floating point numbers of Pharo by Example: http://stephane.ducasse.free.fr/Web/Draft/Float.pdf

link|improve this answer
feedback

However, the comparison equality message, #=, is sent to the collection presumably returned by #squareOfAllElements.

You can rewrite your test statement as:

theTestArray := #(1.2 3 5.1 7).
theSquaredArray := theTestArray collect: [:each | each squared].
theTestArray  with: theSquaredArray do: [:a :b | self assert: (a equals: b) ].

That will test the same as the previous one, but will run one #assert: per element.

Other option would be to implement a variation of #hasEqualElements: in terms of Float>>#equal: instead of #=.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.