0

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?

andro-girl
  • 7,989
  • 22
  • 71
  • 94

1 Answers1

0

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.

Vladimir Ivanov
  • 42,730
  • 18
  • 77
  • 103