1. We cannot use unique collection of parameters for each testmethod in testclass.
For example i have 2 testmethods which testing geometrical figure, first test acute-angled and have parameters squar, rectangle etc. second - round (circle, oval ...).
2. With ThucydidesParameterizedRunner i cannot run single test from class, for example i have 10 tests in class, if i run single test i get somthing like this:
java.lang.Exception: No tests found matching Method test1(com.mytests.TestClass) from org.junit.internal.requests.ClassRequest@50337ff4
at org.junit.internal.requests.FilterRequest.getRunner(FilterRequest.java:35)
at com.intellij.rt.execution.junit.JUnitStarter.main(JUnitStarter.java:67)
Its ok, if i run all class. But it is inconvenient if i have a lot of testmethods in one class.