Login
Remember
Register
Ask a Question
What is the general structure of mobile application testing frameworks?
0
votes
asked
May 8, 2021
in
Appium
by
sharadyadav1986
What is the general structure of mobile application testing frameworks?
appium
mobile-application-testing
testing-frameworks
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
May 8, 2021
by
sharadyadav1986
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.
...