Re: ¿Pascuas en el siglo XXI?

2006-04-16 Thread Fernando Cassia
What the Is there a way to moderate harmont-dev so messages like this can never make it to the list?. Last thing I need is religious spam FC On 4/16/06, Edgardo Maidana Maidana [EMAIL PROTECTED] wrote: VoSier El-hoím

Re: External libraries in the bootclasspath

2006-04-16 Thread Chris Gray
On Friday 14 April 2006 10:51, Paulex Yang wrote: Soeren Strassfeld wrote: Ilya Neverov schrieb: Hi Ilya, just followed your link, as I understand it, the endorsed mechanism is only for API Classes, which are developed outside the JCP. This contains the org.w3c, org.xml and the

Re: assertEquals in tests with incorrect argument order

2006-04-16 Thread Richard Liang
Mark Hindess wrote: Another type of test that could be improved are those using assertTrue to compare two objects for equality. Most of them should be using assertEquals, assertNull or assertNotNull. Using assertEquals automatically gives more meaningful error messages. I strongly support

Re: [jira] Commented: (HARMONY-88) Contribution of code and unit tests for jndi, logging, prefs and sql plus unit tests only for beans, crypto, math, regex and security

2006-04-16 Thread Richard Liang
Mikhail Loenko (JIRA) wrote: [ http://issues.apache.org/jira/browse/HARMONY-88?page=comments#action_12373811 ] Mikhail Loenko commented on HARMONY-88: --- auth, crypto, and security parts integrated in revision 392891 Hello, Beans tests are not

Re: Long,long testcase name...

2006-04-16 Thread LvJimmy,Jing
2006/4/16, Nathan Beyer [EMAIL PROTECTED]: -Original Message- From: LvJimmy,Jing [mailto:[EMAIL PROTECTED] Sent: Saturday, April 15, 2006 9:45 PM To: harmony-dev@incubator.apache.org Subject: Re: Long,long testcase name... 2006/4/16, Nathan Beyer [EMAIL PROTECTED]: +1

Re: [jira] Commented: (HARMONY-88) Contribution of code and unit tests for jndi, logging, prefs and sql plus unit tests only for beans, crypto, math, regex and security

2006-04-16 Thread Mikhail Loenko
Hi Richard Do you know, why these beans tests contain package 'sun.beans'? What kind of classes are there? Thanks, Mikhail 2006/4/17, Richard Liang [EMAIL PROTECTED]: Mikhail Loenko (JIRA) wrote: [ http://issues.apache.org/jira/browse/HARMONY-88?page=comments#action_12373811 ]

Harmony JIRA system is unavailable

2006-04-16 Thread Richard Liang
As subject. :-( -- Richard Liang China Software Development Lab, IBM - Terms of use : http://incubator.apache.org/harmony/mailing.html To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: Long,long testcase name...

2006-04-16 Thread LvJimmy,Jing
2006/4/16, LvJimmy,Jing [EMAIL PROTECTED]: 2006/4/15, Geir Magnusson Jr [EMAIL PROTECTED]: Jimmy, Jing Lv wrote: One day, with Harmony spreading all over the world, I don't want to hear anyone saying: Woo, who's that guy writing these tests named 'test1,test2,test3', it

Re: [jira] Commented: (HARMONY-88) Contribution of code and unit tests for jndi, logging, prefs and sql plus unit tests only for beans, crypto, math, regex and security

2006-04-16 Thread Richard Liang
Mikhail Loenko wrote: Hi Richard Do you know, why these beans tests contain package 'sun.beans'? What kind of classes are there? Thanks, Mikhail 2006/4/17, Richard Liang [EMAIL PROTECTED]: Mikhail Loenko (JIRA) wrote: [

Re: quicker builds with more recent versions of ant

2006-04-16 Thread Paulex Yang
Matt Benson wrote: --- Mark Hindess [EMAIL PROTECTED] wrote: Just in case this helps anyone else. I noticed something odd this morning. Although the default excludes in ant 1.6.2 correctly ignore .svn directories it doesn't seem to do so very efficiently. For example, doing: ant -f

Re: assertEquals in tests with incorrect argument order

2006-04-16 Thread Anton Avtamonov
Completely agree about using proper 'asserts' :-). Just want to remind about one more useful pair of methods - assertSame()/assertNotSame() which are useful when comparing instances. I saw many times in my practice that assertTrue(instance1 == instance2) was used intead. Besides, assertEquals()

Re: should strings in exceptions match the reference implementation?

2006-04-16 Thread Anton Avtamonov
On 4/17/06, LvJimmy,Jing [EMAIL PROTECTED] wrote: Agreed. Try some other words may be better. The only possible un-compatible with RI is that some rookie may write codes like: try{ ... }catch(Except e){ if (e.getMessage().equals(RI_String)){ dosomething; } } But this kind

Re: should strings in exceptions match the reference implementation?

2006-04-16 Thread Mark Hindess
Ok. I think it's a little unfortunate for our users that we can't match error messages but you are probably correct about them being copyright. So, the second issue, should we be checking for messages/descriptions in exception tests, even to match what Harmony throws? If we do then our api