Originally Posted by
jashburn
JUnit 3 test method names require a "test" prefix in order for JUnit's test runner to be able to find them. Therefore all you need to do is to rename your Trmp() method to testTrmp(). (Btw, the usual convention for Java method names is to start them with a lowercase character.)
Woww, jashburn, This is amezing. My code is working now. THANKS a LOT.
Just to mentioned here , there are two ways to write name of method in junit3 . Either you can start with "test" name or you can use private .
I have tried both ways till yesterday, dont know why it didn't work. But after you mentioned , again, I tried with "test" and now it works....hehe.....