Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to test Eclipse plugins?

What would be the best means/tools for testing an Eclipse plugin? Are there some tools for testing the GUI features of an application created with Eclipse plugins?

like image 396
Jenny Smith Avatar asked May 24 '26 00:05

Jenny Smith


1 Answers

You should try to keep GUI tests to a minimum since they are slow to run and takes time to create. If your code is well structured in a Model-view-controller pattern then the GUI specific code should be minimal.

Thats the theory in a perfect world atleast. Until we get there, I prefer to use SWTbot

like image 177
Fredrik Avatar answered May 25 '26 22:05

Fredrik