The Android testing framework
I've implemented access to a database using SQLiteOpenHelper from the android.database package within some classes (with pattern DAO). I …
android database testing android-testingOne of my QA engineers is supporting an app with a fairly large codebase and a lot of different SharedPreferences …
android-testing android-espresso android-instrumentationI created a default empty project on Android Studio 2.1.2 with API 24. In the sample project, Google offers a depreciated class …
android testing android-testingI'm using the new Android Testing Support Library (com.android.support.test:runner:0.2) to run Instrumentation Tests (a.k.a …
android android-testingI'm developing Android application using third party libraries (Twitter4j). I want to be able mock those objects (also objects …
android unit-testing mocking android-testingI want to assert that my Acitivty that I am currently testing is finished when certain actions are performed. Unfortunately …
android testing android-activity android-espresso android-testingI'm struggling to get Robotium to work on the gradle-based Android Studio and I can't find the way to do …
android gradle robotium android-testing ui-testingI want to emulate user's walking and count their steps for auto testing. I tried to search for the solution, …
android android-testing autotestI used to write Android tests using Robotium and retrieve the coverage using Emma. Recently I changed to use Espresso …
android code-coverage android-testing android-espresso gradle-android-test-plugiI am trying to clear all SharedPreferences added during my tests. I already read some posts and the official documentation (…
android unit-testing sharedpreferences android-testing