tags:

views:

19

answers:

1

Is there any annotation in Junit to exclude a non param test in parameterized test class?

A: 

No. The best practice is to move those non-parameterized tests to a different class (.java file)

Jeanne Boyarsky