I tried starting a JUnit test (robotium) for my app:
public class MainTest extends ActivityInstrumentationTestCase2 { private Solo so
I had this error and I fixed it removing the parameter from the constructor method, it was created by Eclipse wizard as:
public OptionsActivityTest( String name ) {
I just had to remove the "String name" to make my tests work again.