James Raitsev
James Raitsev

Reputation: 96581

Running all tests in IntelliJ, howto

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?

enter image description here

Upvotes: 2

Views: 872

Answers (1)

sorencito
sorencito

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

Related Questions