You can associate any number of test classes to run together using a suite. This way all the tests are run when you test your class and you can mix different test runners.
- Create a test suite associated with the class you are testing
- Add a reference to the parameterized test class
Add the other class(es) containing non parameterized tests.
import org.junit.runners.Suite;
import org.junit.runner.RunWith;
@RunWith(Suite.class)
@Suite.SuiteClasses({ParameterizedTestClass.class, UnitTests.class, MoreUnitTests.class})
public class SutTestSuite{
//Empty...
}