Google Associate Android Developer Practice Test - Questions Answers, Page 3
List of questions
Related questions
Question 21
To automate UI tests with Android Studio, you implement your test code in a separate Android test folder. Folder could be named:
Question 22
Once your test has obtained a UiObject object, you can call the methods in the UiObject class to perform user interactions on the UI component represented by that object. You can specify such actions as: (Choose four.)
Question 23
If you want to access a specific UI component in an app, use the UiSelector class. This class represents a query for specific elements in the currently displayed UI. What is correct about it? (Choose two.)
Question 24
Each time your test invokes onView(), Espresso waits to perform the corresponding UI action or assertion until the following synchronization conditions are met: (Choose three.)
Question 25
To run your local unit tests, follow these steps:
Question 26
To create a basic JUnit 4 test class, create a class that contains one or more test methods. A test method begins with the specific annotation and contains the code to exercise and verify a single functionality in the component that you want to test. What is the annotation?
Question 27
The Testing Pyramid, shown in the Figure, illustrates how your app should include the three categories of tests: small, medium, and large. Medium tests are integration tests that:
Question 28
The Testing Pyramid, shown in the Figure, illustrates how your app should include the three categories of tests: small, medium, and large. Small tests are unit tests that :
Question 29
What is illustrated in the picture?
Question 30
What is illustrated in the picture?
Question