> I am looking into automated testing of my FLTK-based > application (Windows OS), does anyone have experience with > any tools out there? I am looking for functional testing of my GUI.
Sounds like a good idea. But... My experiences with automating testing for GUI stuff has been generally "disappointing" so... YMMV. > I have looked-into TestComplete (by SmartBear), and the tool > has some nice features, however, it doesn't seem to recognize > FLTK widgets as easily as with native Windows controls. Not a tool I'm familiar with - do you know how it hooks into the native controls? It is quite likely that it expects a lot of very MS-Windows-ish stuff to happen, which we mainly don't do since it is broadly unnecessary and neither Fast nor Light... Since most fltk widgets derive from Fl_Widget you could conceivably create a testing version of the fltk lib with a modified Fl_Widget base class that would then allow you to instrument and control (and presumably automate) the GUI control. Though that might be more invasive than you had in mind? Other than that, some of the auto-testing libs work by literally simulating clicking on the buttons with the mouse (rather than hooking into the event loop) and they probably would work OK for fltk. Maybe... SELEX Galileo Ltd Registered Office: Sigma House, Christopher Martin Road, Basildon, Essex SS14 3EL A company registered in England & Wales. Company no. 02426132 ******************************************************************** This email and any attachments are confidential to the intended recipient and may also be privileged. If you are not the intended recipient please delete it from your system and notify the sender. You should not copy it or use it for any purpose nor disclose or distribute its contents to any other person. ******************************************************************** _______________________________________________ fltk mailing list [email protected] http://lists.easysw.com/mailman/listinfo/fltk

