How robotium is calling functions written in the test class. I have written many functions in the test class. i dont want to call every functions . I just want to call some functions in some specific conditions. like we are doing in programming languages.How can i do this? I have noticed that even if we are not calling every functions written in test class are executing. why it is like that?
Share
This is not the robotium, but test framework. The instrumentation test runner just goes through the class and call all public methods of a test class.