I actually use the Robotium testing platform for Android, but I believe that it is based on JUnit. I am new to JUnit as well as TDD.
I want to create different test class files based on functions, such as "LoginTest.java", "EditProfileTest.java", and each file contains some test cases for this function.
The question is, when I run it in Eclipse by pressing F11, only one file will be launched. I do not want to put all test cases in one file. Is there a way to run multiple files at once? Or other ways to solve this problem.
source
share