views:

95

answers:

3

I would like some suggestions if your project has some java application elements as well as web then is there an option for testing java applications from the outside like we do with the web applications

+1  A: 

Your question is not very clear to me. But from what I understand, I feel jMeter could be something that might help.

jMeter can not only test web applications (from outside) but ALSO standalone java applications.

Also, do not dismiss jMeter as a performance testing tool. There are ample features in it that makes it a good enough tool for Functional testing as well.

Sathya
Add a link to jMeter for an upvote ;)
furtelwart
shd have done that earlier itself. http://jakarta.apache.org/jmeter/
Sathya
A: 

Do you mean testing desktop applications through the GUI? If so, there are many tools for doing this, both commercial and open source. Some open-source projects to google for:

Nat
A: 

This is called Blackbox testing.

Typically you would write another program that provides inputs to your applications and verifies the output. This is easier for a command line application but for GUI testing you would need to use a framework like others have mentioned.

Another approach is to write a drive that includes the jar files and directly call the public functions and do input/output testing.

aleemb
Just found a tool named Jameleon (automation frameowrk havng plug ins for all types of applications). ANy comments on it
sam