SlideShare a Scribd company logo
Android Unit Test Framework
http://pivotal.github.com/robolectric
Follow us on twitter: @robolectric
Wednesday, October 27, 2010
Tyler Schultz
Agile Engineer, Pivotal Labs
Wednesday, October 27, 2010
Talking Points
• Testing Approaches and Alternatives
• How Robolectric works
• How to extend Robolectric
• Workshop - write tests & help getting you
setup
Wednesday, October 27, 2010
Pivotal Labs
• Jasmine - Javascript BDD test framework,
@jasminebdd
• Cedar - iOS/Objective-C BDD test
framework, @cedarbdd
• Pivotal Tracker - www.pivotaltracker.com
You may have heard of us:
Wednesday, October 27, 2010
Why Unit Test?
Wednesday, October 27, 2010
Pivotal Labs
• www.pivotallabs.com
• San Francisco (Headquarters), NewYork,
Boulder, Singapore
• Primarily Rails - we do mobile too!
• Agile, XP, Continuos Integration, Pair
Programming
Wednesday, October 27, 2010
java.lang.RuntimeException(“Stub!”)
Wednesday, October 27, 2010
Google has stripped the classes in the android.jar file and
have had all their method bodies replaced with:
throw new RuntimeException(“Stub!”);
Wednesday, October 27, 2010
Additional Android testing challenges
• Many of the classes and methods are final
• Lack of interfaces
• Non public constructors
• static methods
Wednesday, October 27, 2010
sfandroid.org members, what have you
been doing?
Wednesday, October 27, 2010
Android Testing
Approaches
Wednesday, October 27, 2010
Android Testing
Approaches
• No Tests! EGAD!
• Android InstrumentationTests/Robotium -
integration style testing of Android apps
• Library of tested POJO’s, referenced from a
non tested Android project
• Mocking framework such as Easy Mock and
Mockito
Wednesday, October 27, 2010
Robolectric
Wednesday, October 27, 2010
Robolectric
• Christian Williams wrote the core while
working on projects at Xtreme Labs of
Toronto.ThankYou Xtreme Labs!
• Robolectric is published under the MIT
license
Wednesday, October 27, 2010
Robolectric
• Pivotal Labs has forked Xtreme Labs repo,
renamed it to Robolectric, and expanded its
functionality
• We’ve used Robolectric on several projects
with great success!
Wednesday, October 27, 2010
Robolectric
Why use Robolectric?
What makes it so great?
Wednesday, October 27, 2010
Why Use Robolectric
vs.Android Instrumentation Tests?
• Tests Run outside of the emulator in a JVM,
not the DalvikVM
- Running in a DalvikVM requires dexing,
packaging and installation on an emulator
or device - slow!
- Tests execute quickly in the JVM and
execute slowly on the emulator
Wednesday, October 27, 2010
Why Use Robolectric
vs.Android Instrumentation Tests?
• Iterate quickly!
• The latest Pivotal Android project is using
Robolectric boasting 1,047 tests that run in 28
seconds!
Wednesday, October 27, 2010
Why Use Robolectric
vs. POJO lib approach?
• The POJO lib approach leads to code
proliferation, interfaces with multiple
implementations - code bloat!
• Robolectric allows for vastly increased test
coverage. Test ALL your code, not just non-
Android code.
Wednesday, October 27, 2010
• Mocking frameworks can lead to tests that
are reverse implementation of the code
• Can lead to tests that are hard to read
• Can lead to tests that don’t help refactoring
Why use Robolectric
vs. Mock approach?
Wednesday, October 27, 2010
Why Use Robolectric?
• Iterate quickly
• Robolectric allows for a black box style of
testing
• Test behavior instead of implementation
• High test coverage
Wednesday, October 27, 2010
How does it work?
Google has stripped the classes in the android.jar file and
have had all their method bodies replaced with:
throw new RuntimeException(“Stub!”);
Wednesday, October 27, 2010
How does it work?
• Shadow Objects
• View and Resource Loading
Wednesday, October 27, 2010
How does it work?
• Robolectric intercepts the loading of Android classes
under test
• Rewrites the method bodies of Android classes (using
javassist)
• Binds new shadow objects to new Android objects
• The modified Android objects proxy method calls to
the shadow objects
Shadow objects
Wednesday, October 27, 2010
How does it work?
• Shadows back the Android classes. i.e.
ShadowImageView backs the ImageView class.
• Method calls to the Android object are proxied to the
shadow object’s method of the same signature, if it
exists.
• Simple implementations giving rudimentary behavior
• State is recorded so it can be verified in tests
Shadow objects
Wednesday, October 27, 2010
How does it work?
• Robolectric parses layout files and builds a
view object tree made of Android view
objects and, of course, their shadows.
• Some of the view xml attributes are applied
to the view object (currently applies: id,
visibility, enabled, text, checked, and src)
• Strings, string arrays, and color resources are
parsed loaded too.
View and Resource Loading
Wednesday, October 27, 2010
• RobolectricSample is a project that is setup
to use Robolectric
• http://github.com/pivotal/RobolectricSample
How can I get started?
Wednesday, October 27, 2010
Getting Started with
Robolectric
$ git clone git://github.com/pivotal/
RobolectricSample.git
$ cd RobolectricSample
$ git submodule update --init
$ android update project -p .
$ ant clean test
These commands are available on the
RobolectricSample README file
Wednesday, October 27, 2010
RobolectricSample
Ant Support
• RobolectricSample provides a build.xml file
which defines a test task
• Useful for Continuous Integration
Wednesday, October 27, 2010
Robolectric IDE
support
• RobolectricSample is setup with IntelliJ project
files. We’re using the latest IntelliJ EAP.
• Eclipse compatibility is currently unknown.
We need help from the community getting
Eclipse support!
• If nothing else, you should be able to use your
favorite tooling to write your code and use
the ant tasks to build and test.
Wednesday, October 27, 2010
RobolectricSample
Project Layout
• RobolectricSample - main Android module
• robolectric - module containing the robolectric
test framework (also a git submodule)
• aidl - module containing any aidl files your project
defines
• code - module where application code and tests go
Wednesday, October 27, 2010
Robolectric
Writing Tests
Wednesday, October 27, 2010
Writing Tests
...
@RunWith(RobolectricTestRunner.class)
public class MyActivityTest {
@Test
! public void shouldDoWizbangFooBar() {
...
Tests that reference Android need to be annotated:
Wednesday, October 27, 2010
Writing Tests
@Test
public void shouldShowLogoWhenButtonIsPressed() {
Activity activity = new MyActivity();
activity.onCreate(null);
ImageView logo = (ImageView) activity.findViewById(R.id.logo);
Button button = (Button) activity.findViewById(R.id.button);
assertThat(logo.getVisibility(), equalTo(View.GONE));
button.performClick();
assertThat(logo.getVisibility(), equalTo(View.VISIBLE));
}
Wednesday, October 27, 2010
Writing Tests
Dealing with cases where Android classes
do not provide a way to retrieve object state
Wednesday, October 27, 2010
Writing Tests
Accessing the Shadow Object
<ImageView
android:id=”@+id/logo”
android:layout_width=”wrap_content”
android:layout_height=”wrap_content”
android:src=”@drawable/logo” />
...
@Test
public void logoImageViewShouldUseTheLogoDrawable() {
ImageView logo = (ImageView) activity.findViewById(R.id.logo);
// imageView only provides logo.getDrawable();
ShadowImageView logoShadow = Robolectric.shadowOf(logo);
assertThat(logoShadow.resourceId, equalTo(R.drawable.logo));
}
Wednesday, October 27, 2010
Shadow Objects
• @RealObject
• __constructor__
• @Implements
• @Implementation
• Robolectric.bindAllShadowClasses()
Wednesday, October 27, 2010
Shadow Objects
@RealObject
• Robolectric is using reflection to
instantiate the shadow object (default or
no-args constructor)
• Robolectric will inject the Android object
onto shadow object’s fields annotated with
@RealObject
Wednesday, October 27, 2010
Shadow Objects
@RealObject
@Implements(View.class)
public class ShadowView {
@RealObject private View realView;
private int id;
...
Wednesday, October 27, 2010
Shadow Objects
• If no shadow class is registered for an
Android class, the Android object’s super
constructor will seek out a shadow class,
up through the constructor super chain
until one is found.
Wednesday, October 27, 2010
Shadow Objects
__constructor__
• When Robolectric is finished instantiating
the shadow object, it will attempt to invoke
a method on the shadow named
__constructor__ that has the same
args as the Android object’s constructor
Wednesday, October 27, 2010
Shadow Objects
__constructor__
public class Intent {
public Intent(String action, Uri uri) {
/* compiled code */
}
...
}
public class ShadowIntent {
public void __constructor__(String action,
Uri uri) {
...
}
...
}
Wednesday, October 27, 2010
Shadow Objects
@Implements
@Implements(View.class)
public class ShadowView {
@RealObject private View realView;
private int id;
...
Wednesday, October 27, 2010
Shadow Objects
@Implementation
public class ShadowTextView {
...
@Implementation
public CharSequence getText() {
return text;
}
...
Wednesday, October 27, 2010
Shadow Objects
Robolectric.bindAllShadowClasses()
• Where shadow objects are registered into
Robolectric
• This is a current listing of all the shadow objects
provided by Robolectric
Wednesday, October 27, 2010
Robolectric
Roadmap
• Eclipse support
• Simplified setup - robolectric.jar
• continued shadow updates and additions
• resource overrides, i.e. hdpi, landscape,
i18n, etc.
Wednesday, October 27, 2010
Q & A & Workshop!
• git clone git://github.com/pivotal/
RobolectricSample.git
• Mac users can download the latest IntelliJ EAP
from my machine: http://tschultz.local
• Add a button to the homepage of
RobolectricSample that toggles the visibility of the
robolectric logo. Tests First!
http://pivotal.github.com/robolectric
http://pivotal.github.com/RoblectricSample
twitter: @robolectric
Wednesday, October 27, 2010

More Related Content

PDF
Unit testing and Android
PDF
How to setup unit testing in Android Studio
PDF
Testing on Android
PPTX
Unit Testing Android Applications
PPTX
Android testing
PPTX
Testing for Android: When, Where, and How to Successfully Use Test Automation
PPTX
Android testing
PDF
Robotium Tutorial
Unit testing and Android
How to setup unit testing in Android Studio
Testing on Android
Unit Testing Android Applications
Android testing
Testing for Android: When, Where, and How to Successfully Use Test Automation
Android testing
Robotium Tutorial

What's hot (20)

PDF
Android Automation Using Robotium
PDF
Inside Android Testing
PDF
Efficient JavaScript Unit Testing, JavaOne China 2013
PDF
Android Testing: An Overview
PDF
Robotium - sampath
PDF
Efficient JavaScript Unit Testing, May 2012
PPTX
[AnDevCon 2016] Mutation Testing for Android
PDF
Selenium Automation Testing Interview Questions And Answers
PDF
Android with dagger_2
ODP
Android Test Driven Development
PPTX
Introduction to Protractor - Habilelabs
PPTX
Reliable mobile test automation
PPTX
Unit Testing Full@
PPTX
TDD with Visual Studio 2010
PDF
Top trending selenium interview questions
PDF
Implementing Quality on a Java Project
PPTX
Principles and patterns for test driven development
PDF
Efficient JavaScript Unit Testing, March 2013
PPTX
Android Test Pyramid - Ágiles 2013
PDF
Oh so you test? - A guide to testing on Android from Unit to Mutation
Android Automation Using Robotium
Inside Android Testing
Efficient JavaScript Unit Testing, JavaOne China 2013
Android Testing: An Overview
Robotium - sampath
Efficient JavaScript Unit Testing, May 2012
[AnDevCon 2016] Mutation Testing for Android
Selenium Automation Testing Interview Questions And Answers
Android with dagger_2
Android Test Driven Development
Introduction to Protractor - Habilelabs
Reliable mobile test automation
Unit Testing Full@
TDD with Visual Studio 2010
Top trending selenium interview questions
Implementing Quality on a Java Project
Principles and patterns for test driven development
Efficient JavaScript Unit Testing, March 2013
Android Test Pyramid - Ágiles 2013
Oh so you test? - A guide to testing on Android from Unit to Mutation
Ad

Similar to Learn How to Unit Test Your Android Application (with Robolectric) (20)

PPTX
Robolectric Adventure
PDF
The Cowardly Test-o-Phobe's Guide To Testing
PPTX
Effective .NET Core Unit Testing with SQLite and Dapper
PPTX
Chegg - iOS @ Scale
PPTX
Effective .NET Core Unit Testing with SQLite and Dapper
PDF
Robotium framework & Jenkins CI tools - TdT@Cluj #19
PPT
Csc253 chapter 09
 
PDF
Feature Bits at LSSC10
PDF
[React-Native Tutorial 10] Camera Roll / Gallery / Camera / Native Modules by...
PPTX
Protractor survival guide
PPT
jDays Sweden 2016
PDF
Cloud-ready Micro Java EE 8
PPTX
MVC and Entity Framework 4
PDF
[Ultracode Munich #4] Short introduction to the new Android build system incl...
PDF
Oscon 2010
PPT
Java EE changes design pattern implementation: JavaDays Kiev 2015
PDF
Guide to the jungle of testing frameworks
PDF
Introduction to Robotium
PDF
Devday2016 real unittestingwithmockframework-phatvu
PDF
springtraning-7024840-phpapp01.pdf
Robolectric Adventure
The Cowardly Test-o-Phobe's Guide To Testing
Effective .NET Core Unit Testing with SQLite and Dapper
Chegg - iOS @ Scale
Effective .NET Core Unit Testing with SQLite and Dapper
Robotium framework & Jenkins CI tools - TdT@Cluj #19
Csc253 chapter 09
 
Feature Bits at LSSC10
[React-Native Tutorial 10] Camera Roll / Gallery / Camera / Native Modules by...
Protractor survival guide
jDays Sweden 2016
Cloud-ready Micro Java EE 8
MVC and Entity Framework 4
[Ultracode Munich #4] Short introduction to the new Android build system incl...
Oscon 2010
Java EE changes design pattern implementation: JavaDays Kiev 2015
Guide to the jungle of testing frameworks
Introduction to Robotium
Devday2016 real unittestingwithmockframework-phatvu
springtraning-7024840-phpapp01.pdf
Ad

More from Marakana Inc. (20)

PDF
Android Services Black Magic by Aleksandar Gargenta
PDF
JRuby at Square
PDF
Behavior Driven Development
PDF
Martin Odersky: What's next for Scala
PPT
Why Java Needs Hierarchical Data
PDF
Deep Dive Into Android Security
PDF
Securing Android
PDF
Pictures from "Learn about RenderScript" meetup at SF Android User Group
PDF
Android UI Tips, Tricks and Techniques
PDF
2010 07-18.wa.rails tdd-6
PDF
Efficient Rails Test-Driven Development - Week 6
PDF
Graphicsand animations devoxx2010 (1)
PDF
What's this jQuery? Where it came from, and how it will drive innovation
PDF
jQuery State of the Union - Yehuda Katz
PDF
Pics from: "James Gosling on Apple, Apache, Google, Oracle and the Future of ...
PDF
Efficient Rails Test Driven Development (class 4) by Wolfram Arnold
PDF
Efficient Rails Test Driven Development (class 3) by Wolfram Arnold
PDF
Learn about JRuby Internals from one of the JRuby Lead Developers, Thomas Enebo
PDF
Replacing Java Incrementally
PDF
Learn to Build like you Code with Apache Buildr
Android Services Black Magic by Aleksandar Gargenta
JRuby at Square
Behavior Driven Development
Martin Odersky: What's next for Scala
Why Java Needs Hierarchical Data
Deep Dive Into Android Security
Securing Android
Pictures from "Learn about RenderScript" meetup at SF Android User Group
Android UI Tips, Tricks and Techniques
2010 07-18.wa.rails tdd-6
Efficient Rails Test-Driven Development - Week 6
Graphicsand animations devoxx2010 (1)
What's this jQuery? Where it came from, and how it will drive innovation
jQuery State of the Union - Yehuda Katz
Pics from: "James Gosling on Apple, Apache, Google, Oracle and the Future of ...
Efficient Rails Test Driven Development (class 4) by Wolfram Arnold
Efficient Rails Test Driven Development (class 3) by Wolfram Arnold
Learn about JRuby Internals from one of the JRuby Lead Developers, Thomas Enebo
Replacing Java Incrementally
Learn to Build like you Code with Apache Buildr

Recently uploaded (20)

PPTX
PA Analog/Digital System: The Backbone of Modern Surveillance and Communication
PDF
NewMind AI Weekly Chronicles - August'25 Week I
PPT
Teaching material agriculture food technology
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PPTX
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
PDF
Chapter 3 Spatial Domain Image Processing.pdf
PDF
Spectral efficient network and resource selection model in 5G networks
PDF
NewMind AI Monthly Chronicles - July 2025
PDF
Machine learning based COVID-19 study performance prediction
PDF
Electronic commerce courselecture one. Pdf
PPTX
Understanding_Digital_Forensics_Presentation.pptx
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PPTX
Big Data Technologies - Introduction.pptx
PPTX
A Presentation on Artificial Intelligence
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PPTX
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
PA Analog/Digital System: The Backbone of Modern Surveillance and Communication
NewMind AI Weekly Chronicles - August'25 Week I
Teaching material agriculture food technology
Agricultural_Statistics_at_a_Glance_2022_0.pdf
“AI and Expert System Decision Support & Business Intelligence Systems”
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
Chapter 3 Spatial Domain Image Processing.pdf
Spectral efficient network and resource selection model in 5G networks
NewMind AI Monthly Chronicles - July 2025
Machine learning based COVID-19 study performance prediction
Electronic commerce courselecture one. Pdf
Understanding_Digital_Forensics_Presentation.pptx
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
Reach Out and Touch Someone: Haptics and Empathic Computing
Big Data Technologies - Introduction.pptx
A Presentation on Artificial Intelligence
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx

Learn How to Unit Test Your Android Application (with Robolectric)

  • 1. Android Unit Test Framework http://pivotal.github.com/robolectric Follow us on twitter: @robolectric Wednesday, October 27, 2010
  • 2. Tyler Schultz Agile Engineer, Pivotal Labs Wednesday, October 27, 2010
  • 3. Talking Points • Testing Approaches and Alternatives • How Robolectric works • How to extend Robolectric • Workshop - write tests & help getting you setup Wednesday, October 27, 2010
  • 4. Pivotal Labs • Jasmine - Javascript BDD test framework, @jasminebdd • Cedar - iOS/Objective-C BDD test framework, @cedarbdd • Pivotal Tracker - www.pivotaltracker.com You may have heard of us: Wednesday, October 27, 2010
  • 5. Why Unit Test? Wednesday, October 27, 2010
  • 6. Pivotal Labs • www.pivotallabs.com • San Francisco (Headquarters), NewYork, Boulder, Singapore • Primarily Rails - we do mobile too! • Agile, XP, Continuos Integration, Pair Programming Wednesday, October 27, 2010
  • 8. Google has stripped the classes in the android.jar file and have had all their method bodies replaced with: throw new RuntimeException(“Stub!”); Wednesday, October 27, 2010
  • 9. Additional Android testing challenges • Many of the classes and methods are final • Lack of interfaces • Non public constructors • static methods Wednesday, October 27, 2010
  • 10. sfandroid.org members, what have you been doing? Wednesday, October 27, 2010
  • 12. Android Testing Approaches • No Tests! EGAD! • Android InstrumentationTests/Robotium - integration style testing of Android apps • Library of tested POJO’s, referenced from a non tested Android project • Mocking framework such as Easy Mock and Mockito Wednesday, October 27, 2010
  • 14. Robolectric • Christian Williams wrote the core while working on projects at Xtreme Labs of Toronto.ThankYou Xtreme Labs! • Robolectric is published under the MIT license Wednesday, October 27, 2010
  • 15. Robolectric • Pivotal Labs has forked Xtreme Labs repo, renamed it to Robolectric, and expanded its functionality • We’ve used Robolectric on several projects with great success! Wednesday, October 27, 2010
  • 16. Robolectric Why use Robolectric? What makes it so great? Wednesday, October 27, 2010
  • 17. Why Use Robolectric vs.Android Instrumentation Tests? • Tests Run outside of the emulator in a JVM, not the DalvikVM - Running in a DalvikVM requires dexing, packaging and installation on an emulator or device - slow! - Tests execute quickly in the JVM and execute slowly on the emulator Wednesday, October 27, 2010
  • 18. Why Use Robolectric vs.Android Instrumentation Tests? • Iterate quickly! • The latest Pivotal Android project is using Robolectric boasting 1,047 tests that run in 28 seconds! Wednesday, October 27, 2010
  • 19. Why Use Robolectric vs. POJO lib approach? • The POJO lib approach leads to code proliferation, interfaces with multiple implementations - code bloat! • Robolectric allows for vastly increased test coverage. Test ALL your code, not just non- Android code. Wednesday, October 27, 2010
  • 20. • Mocking frameworks can lead to tests that are reverse implementation of the code • Can lead to tests that are hard to read • Can lead to tests that don’t help refactoring Why use Robolectric vs. Mock approach? Wednesday, October 27, 2010
  • 21. Why Use Robolectric? • Iterate quickly • Robolectric allows for a black box style of testing • Test behavior instead of implementation • High test coverage Wednesday, October 27, 2010
  • 22. How does it work? Google has stripped the classes in the android.jar file and have had all their method bodies replaced with: throw new RuntimeException(“Stub!”); Wednesday, October 27, 2010
  • 23. How does it work? • Shadow Objects • View and Resource Loading Wednesday, October 27, 2010
  • 24. How does it work? • Robolectric intercepts the loading of Android classes under test • Rewrites the method bodies of Android classes (using javassist) • Binds new shadow objects to new Android objects • The modified Android objects proxy method calls to the shadow objects Shadow objects Wednesday, October 27, 2010
  • 25. How does it work? • Shadows back the Android classes. i.e. ShadowImageView backs the ImageView class. • Method calls to the Android object are proxied to the shadow object’s method of the same signature, if it exists. • Simple implementations giving rudimentary behavior • State is recorded so it can be verified in tests Shadow objects Wednesday, October 27, 2010
  • 26. How does it work? • Robolectric parses layout files and builds a view object tree made of Android view objects and, of course, their shadows. • Some of the view xml attributes are applied to the view object (currently applies: id, visibility, enabled, text, checked, and src) • Strings, string arrays, and color resources are parsed loaded too. View and Resource Loading Wednesday, October 27, 2010
  • 27. • RobolectricSample is a project that is setup to use Robolectric • http://github.com/pivotal/RobolectricSample How can I get started? Wednesday, October 27, 2010
  • 28. Getting Started with Robolectric $ git clone git://github.com/pivotal/ RobolectricSample.git $ cd RobolectricSample $ git submodule update --init $ android update project -p . $ ant clean test These commands are available on the RobolectricSample README file Wednesday, October 27, 2010
  • 29. RobolectricSample Ant Support • RobolectricSample provides a build.xml file which defines a test task • Useful for Continuous Integration Wednesday, October 27, 2010
  • 30. Robolectric IDE support • RobolectricSample is setup with IntelliJ project files. We’re using the latest IntelliJ EAP. • Eclipse compatibility is currently unknown. We need help from the community getting Eclipse support! • If nothing else, you should be able to use your favorite tooling to write your code and use the ant tasks to build and test. Wednesday, October 27, 2010
  • 31. RobolectricSample Project Layout • RobolectricSample - main Android module • robolectric - module containing the robolectric test framework (also a git submodule) • aidl - module containing any aidl files your project defines • code - module where application code and tests go Wednesday, October 27, 2010
  • 33. Writing Tests ... @RunWith(RobolectricTestRunner.class) public class MyActivityTest { @Test ! public void shouldDoWizbangFooBar() { ... Tests that reference Android need to be annotated: Wednesday, October 27, 2010
  • 34. Writing Tests @Test public void shouldShowLogoWhenButtonIsPressed() { Activity activity = new MyActivity(); activity.onCreate(null); ImageView logo = (ImageView) activity.findViewById(R.id.logo); Button button = (Button) activity.findViewById(R.id.button); assertThat(logo.getVisibility(), equalTo(View.GONE)); button.performClick(); assertThat(logo.getVisibility(), equalTo(View.VISIBLE)); } Wednesday, October 27, 2010
  • 35. Writing Tests Dealing with cases where Android classes do not provide a way to retrieve object state Wednesday, October 27, 2010
  • 36. Writing Tests Accessing the Shadow Object <ImageView android:id=”@+id/logo” android:layout_width=”wrap_content” android:layout_height=”wrap_content” android:src=”@drawable/logo” /> ... @Test public void logoImageViewShouldUseTheLogoDrawable() { ImageView logo = (ImageView) activity.findViewById(R.id.logo); // imageView only provides logo.getDrawable(); ShadowImageView logoShadow = Robolectric.shadowOf(logo); assertThat(logoShadow.resourceId, equalTo(R.drawable.logo)); } Wednesday, October 27, 2010
  • 37. Shadow Objects • @RealObject • __constructor__ • @Implements • @Implementation • Robolectric.bindAllShadowClasses() Wednesday, October 27, 2010
  • 38. Shadow Objects @RealObject • Robolectric is using reflection to instantiate the shadow object (default or no-args constructor) • Robolectric will inject the Android object onto shadow object’s fields annotated with @RealObject Wednesday, October 27, 2010
  • 39. Shadow Objects @RealObject @Implements(View.class) public class ShadowView { @RealObject private View realView; private int id; ... Wednesday, October 27, 2010
  • 40. Shadow Objects • If no shadow class is registered for an Android class, the Android object’s super constructor will seek out a shadow class, up through the constructor super chain until one is found. Wednesday, October 27, 2010
  • 41. Shadow Objects __constructor__ • When Robolectric is finished instantiating the shadow object, it will attempt to invoke a method on the shadow named __constructor__ that has the same args as the Android object’s constructor Wednesday, October 27, 2010
  • 42. Shadow Objects __constructor__ public class Intent { public Intent(String action, Uri uri) { /* compiled code */ } ... } public class ShadowIntent { public void __constructor__(String action, Uri uri) { ... } ... } Wednesday, October 27, 2010
  • 43. Shadow Objects @Implements @Implements(View.class) public class ShadowView { @RealObject private View realView; private int id; ... Wednesday, October 27, 2010
  • 44. Shadow Objects @Implementation public class ShadowTextView { ... @Implementation public CharSequence getText() { return text; } ... Wednesday, October 27, 2010
  • 45. Shadow Objects Robolectric.bindAllShadowClasses() • Where shadow objects are registered into Robolectric • This is a current listing of all the shadow objects provided by Robolectric Wednesday, October 27, 2010
  • 46. Robolectric Roadmap • Eclipse support • Simplified setup - robolectric.jar • continued shadow updates and additions • resource overrides, i.e. hdpi, landscape, i18n, etc. Wednesday, October 27, 2010
  • 47. Q & A & Workshop! • git clone git://github.com/pivotal/ RobolectricSample.git • Mac users can download the latest IntelliJ EAP from my machine: http://tschultz.local • Add a button to the homepage of RobolectricSample that toggles the visibility of the robolectric logo. Tests First! http://pivotal.github.com/robolectric http://pivotal.github.com/RoblectricSample twitter: @robolectric Wednesday, October 27, 2010