I used Spock, and there is this brilliant @Unroll annotation that makes all runs of the test method look like separate tests.
Is there something similar for JUnit @Theory ? When the @Theory testing @Theory run multiple times (with different parameters), it still looks like one of the methods launched in the IDE. I would like each of them to be performed separately.
source share