SlideShare a Scribd company logo
An Overview of
Android Testing
Eric Oestrich
BohConf
7/19/2013
Eric Oestrich
http://www.smartlogic.io
https://twitter.com/ericoestrich
https://github.com/oestrich
SmartLogic
You can test Android?
Regular Android testing
leaves a lot to be
desired
Robolectric
http://robolectric.org/
Run tests on your
development machine
JUnit 4
Requires Maven
IntelliJ
Supports maven projects
Eclipse
Should just use IntelliJ
Android Studio
Uses gradle, not much support for
this yet
Downsides
Content Providers are
still hard to test
Still somewhat new
Not every area is able to be tested
nicely
Lack of Documentation
Extra Libraries You
Should Consider
Hamcrest
http://hamcrest.org/JavaHamcrest/
Hamcrest
● Nicer assertions than regular JUnit
Hamcrest
assertThat(item.getId(), equalTo(itemId));
FEST Android
https://github.com/square/fest-android
FEST Android
● Fluent assertions make test read nicely
● FEST additions specific to Android
FEST Android
assertThat(view.getVisibility(), equalTo(View.GONE));
vs
assertThat(view).isGone();
Awaitility
https://code.google.com/p/awaitility/
Awaitility
● Handles testing asynchronous code nicely
● Set timeouts
Awaitility
public void testActivityTitle() {
await().atMost(TIMEOUT_SECONDS, TimeUnit.SECONDS).until(
activityTitle(), equalTo("Notification"));
Spoon.screenshot(getActivity(), "activity_title");
}
Awaitility
protected Callable<String> activityTitle() {
return new Callable<String>() {
@Override
public String call() throws Exception {
return mActivity.getTitle().toString();
}
};
}
Spoon
https://github.com/square/spoon
Spoon
● Take screenshots of app during test
● Compiles to animated gif
● Instrumentation tests
Spoon
public void testActivity() {
Spoon.screenshot(getActivity(), "activity");
}
Spoon
http://square.github.io/spoon/sample/index.html
Continuous Integration
Jenkins Shell Script
export ANDROID_HOME=/var/lib/jenkins/tools/android-sdk
mvn clean test --batch-mode
Javadocs
JUnit Results
Android Emulator Plugin
https://wiki.jenkins-ci.
org/display/JENKINS/Android+Emulator+Plu
gin
Resources
● http://corner.squareup.com/2013/05/robolectric-two-point-oh.html
● http://blog.bignerdranch.com/2583-testing-the-android-way/
Questions?
http://www.smartlogic.io
http://www.twitter.com/smartlogic
http://www.github.com/smartlogic
 
http://www.facebook.com/smartlogic

More Related Content

PDF
Inside Android Testing
PPTX
Android testing
PPTX
Android testing
PDF
A guide to Android automated testing
PDF
Android Automation Using Robotium
PDF
Robotium Tutorial
PPT
Test Automation On Android Platform Using Robotium
PDF
Robotium - sampath
Inside Android Testing
Android testing
Android testing
A guide to Android automated testing
Android Automation Using Robotium
Robotium Tutorial
Test Automation On Android Platform Using Robotium
Robotium - sampath

What's hot (20)

PDF
Robotium at Android Only 2010-09-29
PDF
Testing on Android
PDF
Android testing part i
PDF
Unit testing and Android
PPTX
Different Android Test Automation Frameworks - What Works You the Best?
ODP
Testing in Android: automatici, di integrazione, TDD e scenari avanzati
PPTX
Testing for Android: When, Where, and How to Successfully Use Test Automation
PDF
Android Test Automation Workshop
PDF
Mobile App Testing ScanAgile 2012
PPTX
Testing Android Application, Droidcon Torino
PDF
Utilizando Espresso e UIAutomator no Teste de Apps Android
PDF
Dagger for android
PDF
Learn How to Unit Test Your Android Application (with Robolectric)
PPT
Android automation tools
PPTX
Appium Mobile Testing: Nakov at BurgasConf - July 2021
PPTX
Automation Proposal_V1.0
PPTX
Choosing the Best Open Source Test Automation Tool for You
PPTX
Robotium
PDF
How to setup unit testing in Android Studio
PDF
MonkeyTalk Documentation
Robotium at Android Only 2010-09-29
Testing on Android
Android testing part i
Unit testing and Android
Different Android Test Automation Frameworks - What Works You the Best?
Testing in Android: automatici, di integrazione, TDD e scenari avanzati
Testing for Android: When, Where, and How to Successfully Use Test Automation
Android Test Automation Workshop
Mobile App Testing ScanAgile 2012
Testing Android Application, Droidcon Torino
Utilizando Espresso e UIAutomator no Teste de Apps Android
Dagger for android
Learn How to Unit Test Your Android Application (with Robolectric)
Android automation tools
Appium Mobile Testing: Nakov at BurgasConf - July 2021
Automation Proposal_V1.0
Choosing the Best Open Source Test Automation Tool for You
Robotium
How to setup unit testing in Android Studio
MonkeyTalk Documentation
Ad

Viewers also liked (20)

PDF
Android Meetup Slovenija #3 - Testing with Robolectric by Ivan Kust
PDF
Introduction to android testing - oscon 2012
PPTX
Android Performance Tips & Tricks
PPTX
Unit Testing Android Applications
PDF
Unit Testing on Android: why and how? DevFest Romania, Bucharest 2016
PDF
Testing Android applications with Maveryx
PDF
Android Building, Testing and reversing
PDF
Android testing
PDF
Android Testing, Why So Hard?!
PDF
Testing Android
PDF
Testing With Open Source
PDF
Unit testing in android
PDF
Unit testing on Android (Droidcon Dubai 2015)
PDF
Mobile Performance Testing - Best Practices
PPTX
Rapid Android Application Security Testing
PDF
Oh so you test? - A guide to testing on Android from Unit to Mutation
PDF
Testing on Android
PDF
How ANDROID TESTING changed how we think about Death - Second Edition
PDF
Performance Testing for Mobile Apps & Sites using Apache JMeter
KEY
Introduction to android testing
Android Meetup Slovenija #3 - Testing with Robolectric by Ivan Kust
Introduction to android testing - oscon 2012
Android Performance Tips & Tricks
Unit Testing Android Applications
Unit Testing on Android: why and how? DevFest Romania, Bucharest 2016
Testing Android applications with Maveryx
Android Building, Testing and reversing
Android testing
Android Testing, Why So Hard?!
Testing Android
Testing With Open Source
Unit testing in android
Unit testing on Android (Droidcon Dubai 2015)
Mobile Performance Testing - Best Practices
Rapid Android Application Security Testing
Oh so you test? - A guide to testing on Android from Unit to Mutation
Testing on Android
How ANDROID TESTING changed how we think about Death - Second Edition
Performance Testing for Mobile Apps & Sites using Apache JMeter
Introduction to android testing
Ad

Similar to Android Testing: An Overview (20)

PDF
Android UI Testing with Espresso - How to Get Started.pdf
PPTX
PDF
Unit & Automation Testing in Android - Stanislav Gatsev, Melon
PDF
Building Maintainable Android Apps (DroidCon NYC 2014)
PDF
Top 4 Popular Android Test Automation Frameworks During an Economic Downturn.pdf
PPTX
Testing the UI of Mobile Applications
PPTX
Android Testing
PDF
Justin Ison
PDF
Testando Apps Android na Nuvem
PPTX
Android Apps Testing in 2019
PDF
Testando Sua App Android na Nuvem
PDF
Play with Testing on Android - Gilang Ramadhan (Academy Content Writer at Dic...
PDF
Automated Exploratory Testing
PPTX
Testing android apps with espresso
PDF
Guide to the jungle of testing frameworks
PDF
8 Best Automated Android App Testing Tools and Framework in 2024.pdf
PDF
8 Best Automated Android App Testing Tools and Frameworks in 2024.pdf
PPTX
Xamarin Test Cloud - from zero to hero in automated ui testing
PDF
Top 5 Android testing frameworks you need to consider in 2024.pdf
PPTX
Xam expertday
Android UI Testing with Espresso - How to Get Started.pdf
Unit & Automation Testing in Android - Stanislav Gatsev, Melon
Building Maintainable Android Apps (DroidCon NYC 2014)
Top 4 Popular Android Test Automation Frameworks During an Economic Downturn.pdf
Testing the UI of Mobile Applications
Android Testing
Justin Ison
Testando Apps Android na Nuvem
Android Apps Testing in 2019
Testando Sua App Android na Nuvem
Play with Testing on Android - Gilang Ramadhan (Academy Content Writer at Dic...
Automated Exploratory Testing
Testing android apps with espresso
Guide to the jungle of testing frameworks
8 Best Automated Android App Testing Tools and Framework in 2024.pdf
8 Best Automated Android App Testing Tools and Frameworks in 2024.pdf
Xamarin Test Cloud - from zero to hero in automated ui testing
Top 5 Android testing frameworks you need to consider in 2024.pdf
Xam expertday

More from SmartLogic (20)

PDF
Writing Game Servers with Elixir
PDF
All Aboard The Stateful Train
PDF
DC |> Elixir Meetup - Going off the Rails into Elixir - Dan Ivovich
PDF
Monitoring Your Elixir Application with Prometheus
PDF
Going Multi-Node
PPTX
Kubernetes and docker
PDF
Serializing Value Objects-Ara Hacopian
PDF
Guide to food foraging by SmartLogic's Kei Ellerbrock
PDF
Introduction to Type Script by Sam Goldman, SmartLogic
PDF
How SmartLogic Uses Chef-Dan Ivovich
PPTX
A Few Interesting Things in Apple's Swift Programming Language
PDF
Effective ActiveRecord
PDF
An Introduction to Reactive Cocoa
PDF
iOS Development Methodology
PPT
CSS Preprocessors to the Rescue!
PDF
Deploying Rails Apps with Chef and Capistrano
PDF
From Slacker to Hacker, Practical Tips for Learning to Code
PDF
The Language of Abstraction in Software Development
PPTX
Intro to DTCoreText: Moving Past UIWebView | iOS Development
PDF
Logstash: Get to know your logs
Writing Game Servers with Elixir
All Aboard The Stateful Train
DC |> Elixir Meetup - Going off the Rails into Elixir - Dan Ivovich
Monitoring Your Elixir Application with Prometheus
Going Multi-Node
Kubernetes and docker
Serializing Value Objects-Ara Hacopian
Guide to food foraging by SmartLogic's Kei Ellerbrock
Introduction to Type Script by Sam Goldman, SmartLogic
How SmartLogic Uses Chef-Dan Ivovich
A Few Interesting Things in Apple's Swift Programming Language
Effective ActiveRecord
An Introduction to Reactive Cocoa
iOS Development Methodology
CSS Preprocessors to the Rescue!
Deploying Rails Apps with Chef and Capistrano
From Slacker to Hacker, Practical Tips for Learning to Code
The Language of Abstraction in Software Development
Intro to DTCoreText: Moving Past UIWebView | iOS Development
Logstash: Get to know your logs

Recently uploaded (20)

PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PDF
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PDF
Network Security Unit 5.pdf for BCA BBA.
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PPTX
Big Data Technologies - Introduction.pptx
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PDF
Machine learning based COVID-19 study performance prediction
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PDF
Chapter 3 Spatial Domain Image Processing.pdf
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PDF
cuic standard and advanced reporting.pdf
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PPTX
Cloud computing and distributed systems.
PPTX
ACSFv1EN-58255 AWS Academy Cloud Security Foundations.pptx
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PPTX
sap open course for s4hana steps from ECC to s4
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
DOCX
The AUB Centre for AI in Media Proposal.docx
PDF
Empathic Computing: Creating Shared Understanding
Reach Out and Touch Someone: Haptics and Empathic Computing
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
Network Security Unit 5.pdf for BCA BBA.
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Big Data Technologies - Introduction.pptx
The Rise and Fall of 3GPP – Time for a Sabbatical?
Machine learning based COVID-19 study performance prediction
Digital-Transformation-Roadmap-for-Companies.pptx
Chapter 3 Spatial Domain Image Processing.pdf
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
cuic standard and advanced reporting.pdf
Diabetes mellitus diagnosis method based random forest with bat algorithm
Cloud computing and distributed systems.
ACSFv1EN-58255 AWS Academy Cloud Security Foundations.pptx
Dropbox Q2 2025 Financial Results & Investor Presentation
sap open course for s4hana steps from ECC to s4
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
The AUB Centre for AI in Media Proposal.docx
Empathic Computing: Creating Shared Understanding

Android Testing: An Overview