Reputation: 96581
It seems that i can either run all jUnit
tests or all TestNG
tests in my case
Is it possible to create a single test which will cover both jUnit
and testNG
?
Upvotes: 2
Views: 872
Reputation: 2625
From IDEA this is impossible. I suggest that you run your tests with Maven or similar and execute them both. You can also view test coverage with Emma, even mixed, I think.
Upvotes: 1