Run all tests

Is there a way to run all tests in multiple eclipse projects?

I have a project with several maven modules and you want to use emma to show me code that is not covered by any tests, and not the question in which it lies. So my idea is to run one run in emma-coverage, which includes all the tests of all my modules.

is there any way to do this?

+4
source share
1 answer

You can see jacoco , which runs your tests in the context of ant / emma and generates a report - a report component can combine the results of each submodule into one report.

+1
source

Source: https://habr.com/ru/post/1394586/


All Articles