Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the best mechanism for testing applets?

I'm trying to effectively build a functional test suite for an applet, and I'm trying to find a good framework for it.

In the past, when I wanted to design a test suite that would serve as both functional and load testing on an application, it has always been a web-based application, or at least some kind of service-based application, and I've used something like grinder to build up test scripts and use them to simulate users.

With a Java applet, it's not clear to me what, if any, mechanism may exist for me to consume and run usage scripts against the GUI and thus simulate a user clicking on form controls.

Does anyone have any experience with this?

like image 946
Patrick Lee Avatar asked Jan 11 '09 15:01

Patrick Lee


1 Answers

Have a look at FEST Swing. It makes it easy to drive and test Swing GUIs. It supports applets.

like image 137
Dan Dyer Avatar answered Oct 01 '22 08:10

Dan Dyer