Google News
logo
Appium - Interview Questions
What is the general structure of mobile application testing frameworks?
There are mainly three segments used in Mobile Application Testing frameworks:

Application Package : the Application Package is the target application that we have to test.

Instrumentation TestRunner : The Instrumentation TestRunner can be defined as a test case runner that runs test cases on the target application. It consists of an SDK tool for building tests and a tool that provides APIs for writing a program that controls an Android device, for example, MonkeyRunner.

Test Package : The Test Package contains two classes, Test case classes and Mock objects. The Test case classes include test methods to perform on the target application, while the mock object has mock data that will be used as sample input for test cases.
Advertisement