Re: TestNG 2.0

2004-12-09 Thread theUser BL
For all, who doesn't know it: http://today.java.net/pub/n/TestNG2.0 http://beust.com/weblog/archives/000215.html https://testng.dev.java.net/ It seems that TestNG 2.0 is released. Can you do a comparison of it against our Mauve testing framework ? What is better and why is it done this way ?

Article about Dynamic Java and more

2004-12-09 Thread theUser BL
Hi. For all people, who don't read monologue, here an interesting article about Dynamic Java: http://www.go-mono.com/monologue/ http://usefulinc.com/edd/blog/contents/2004/12/09-jvm/read http://www.tbray.org/ongoing/When/200x/2004/12/08/DynamicJava Greatings theuserbl

Re: Article about Dynamic Java and more

2004-12-09 Thread Andrew Haley
theUser BL writes: Hi. For all people, who don't read monologue, here an interesting article about Dynamic Java: http://www.go-mono.com/monologue/ http://usefulinc.com/edd/blog/contents/2004/12/09-jvm/read http://www.tbray.org/ongoing/When/200x/2004/12/08/DynamicJava Rather than

Re: Article about Dynamic Java and more

2004-12-09 Thread theUser BL
Hi. For all people, who don't read monologue, here an interesting article about Dynamic Java: http://www.go-mono.com/monologue/ http://usefulinc.com/edd/blog/contents/2004/12/09-jvm/read http://www.tbray.org/ongoing/When/200x/2004/12/08/DynamicJava Rather than just posting random

RE: Memory leak in java.lang.Thread ?

2004-12-09 Thread David Holmes
I get an OutOfMemoryError. This is because new threads are added to their ThreadGroups in the Thread() constructor rather than when the thread is actually started. Therefore, even if they are never started they remain referenced an unable to be garbage collected. Sun fixed this in Java 5.0.