I'm looking for a way to parameterize my test methods. I'm using JUnit and I want to find a way to unit test a couple of methods. With TestNG's DataProvider I can easily do that: I can provide scenarios to test some methods within a test class. With JUnit's Parameterized alternative I can do it, but the scope of it is the whole class, but I need to reduce the scope to one test method. Is there a way for that?