On 7/1/06, Alex Blewitt <[EMAIL PROTECTED]> wrote:

On 01/07/06, Andrew Zhang <[EMAIL PROTECTED]> wrote:
>
> Agree. But there are always exceptions. Some "toString" methods have to
> contain some key information as spec required, for example, the size or
> index.

Can you give examples of where the spec specifically mandates the
return values of either size or index?


What I mean is in some cases, toString returns a string is not enough.
e.g. "Harmony is Great"  obviously doesn't comply with spec
AbstractCollection.toString() as you mentioned below.
Another example is CharBuffer.toString(). The spec says:
"Returns a string containing the characters in this buffer.
The first character of the resulting string will be the character at this
buffer's position, while the last character will be the character at index
limit() - 1. Invoking this method does not change the buffer's position. "

Therefore, for these special cases, tests for toString are useful. Of
course, instead of comparing Harmony's toString return value with RI's, the
test should verify whether Harmony's toString value complys with spec. The
test should not look like:
assertEquals(RI_TOSTRING, instance.toString());
For CharBuffer.toString, the test may be written as following:
assertEquals(the character at this bufer's position, the first character of
toString);
....

For most other cases, IMO, Harmony doesn't need to keep the same return
value as RI's.

Thanks!

BTW, are these toString information (RI) copyrighted?

I don't believe they can be copyrighted. However, the only way to tell
if the RI and Harmony return the same results would be to execute both
and compare them, and I believe that such reverse engineering would be
outside the remit of Harmony.


Agree.

I doubt that the TCK would test for such
features exactly, without specifying them. For example, the
AbstractCollection and AbstractMap does specify what it should return:


http://java.sun.com/j2se/1.5.0/docs/api/java/util/AbstractCollection.html#toString()

http://java.sun.com/j2se/1.5.0/docs/api/java/util/AbstractMap.html#toString()

I think you'd find it difficult to explain why (in all cases)
toString() returned exactly the same value as the RI without such
detailed comments as to their format :-)

Alex.

---------------------------------------------------------------------
Terms of use : http://incubator.apache.org/harmony/mailing.html
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




--
Andrew Zhang
China Software Development Lab, IBM

Reply via email to