Hi, What kind of tests do you want to perform : unit tests (white box testing), functional tests (black box testing), system integration test, load/stress testing ?
If the answer is automated unit tests, then the answer is to use Ant to start automatically your unit tests. Now WRT the tools, if you're testing plain java classes, you can use JUnit directly. If you're testing J2EE components, you might want to look at Cactus which is an extension of JUnit. For functional unit tests, you can look at HttpUnit, also an extension to JUnit. You can check http://junit.org/extensions.htm for a list of all JUnit extensions. -Vincent > -----Original Message----- > From: SHINOY M.J [mailto:[EMAIL PROTECTED]] > Sent: 08 February 2002 14:15 > To: [EMAIL PROTECTED] > Subject: any automated tesing tool > > > hai sir, > I like to know wether any automated tool is avialable other than jtest. > Which canbe downloaded free of cost.my project is developed in java. > > thanks in advance > > -- > Shinoy M.J. > PG.Hostel > Room No:221 > R.E.C.Calicut. > > > > > -- > To unsubscribe, e-mail: <mailto:cactus-user- > [EMAIL PROTECTED]> > For additional commands, e-mail: <mailto:cactus-user- > [EMAIL PROTECTED]> > -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
