Automating unit tests (junit) for Eclipse Plugin development

后端 未结 7 1120
野趣味
野趣味 2020-12-07 23:31

I am developing Eclipse plugins, and I need to be able to automate the building and execution of the test suite for each plugin. (Using Junit)

Test are working with

相关标签:
7条回答
  • 2020-12-08 00:14

    Use Ant and CruiseControl - you call the unit tests in the Ant script as well as the rest of your build logic and can run them with each build iteration - then CruiseControl can automate your build calls and run these tests each time.

    0 讨论(0)
提交回复
热议问题