AssertJ Android


Source link: https://github.com/square/assertj-android

AssertJ Android

A set of AssertJ assertions geared toward testing Android.

Deprecated

The support libraries and play services are developing at a rate which this library cannot sustain. Additionally, we no longer think AssertJ's model for supporting alternate assertions is a good practice.

We recommend using Truth which has vastly superior extensibility model which, when coupled with things like Kotlin's apply method create a really nice assertion experience.


Writing tests is not the most glamorous part of developing an Android application but it is an invaluable one. Using libraries like JUnit and AssertJ provide a great starting point for writing tests.

This library is an extension of AssertJ which aims to make it even easier to test Android.

Examples

  • AssertJ Android:

    assertThat(view).isGone();
    
  • Regular JUnit:

    assertEquals(View.GONE, view.getVisibility());
    
  • Regular AssertJ:

    assertThat(view.getVisibility()).isEqualTo(View.GONE);
    

When failing, the AssertJ Android assertion produces an output which allows you to immediately recognize the problem: Expected visibility <gone> but was <invisible>.

Compare that to the output of regular AssertJ Expected:<[8]> but was:<[4]> and regular JUnit Expected: <8> but was: <4> and you should immediately see the advantage.

Because AssertJ Android offers assertions directly on objects rather than properties they can be chained together.

  • AssertJ Android:

    assertThat(layout).isVisible()
      .isVertical()
      .hasChildCount(4)
      .hasShowDividers(SHOW_DIVIDERS_MIDDLE);
    
  • Regular JUnit:

    assertEquals(View.VISIBLE, layout.getVisibility());
     assertEquals(VERTICAL, layout.getOrientation());
     assertEquals(4, layout.getChildCount());
     assertEquals(SHOW_DIVIDERS_MIDDLE, layout.getShowDividers());
    
  • Regular AssertJ:

    assertThat(layout.getVisibility()).isEqualTo(View.VISIBLE);
     assertThat(layout.getOrientation()).isEqualTo(VERTICAL);
     assertThat(layout.getChildCount()).isEqualTo(4);
     assertThat(layout.getShowDividers()).isEqualTo(SHOW_DIVIDERS_MIDDLE);
    

Assertions exist for nearly every object that you would ever want to test, from LinearLayout to ActionBar to Fragment to MenuItem. Everything in the support library is included too.

To get started writing tests add the following import:

import static org.assertj.android.api.Assertions.assertThat;

Add-On Modules

Modules are also provided for the add-on Android libraries. Add the dependency (listed below) and use the following imports:

  • support-v4: import static org.assertj.android.support.v4.api.Assertions.assertThat;
  • play-services: import static org.assertj.android.playservices.api.Assertions.assertThat;
  • appcompat-v7: import static org.assertj.android.appcompat.v7.api.Assertions.assertThat;
  • mediarouter-v7: import static org.assertj.android.mediarouter.v7.api.Assertions.assertThat;
  • gridlayout-v7: import static org.assertj.android.gridlayout.v7.api.Assertions.assertThat;
  • cardview-v7: import static org.assertj.android.cardview.v7.api.Assertions.assertThat;
  • recyclerview-v7: import static org.assertj.android.recyclerview.v7.api.Assertions.assertThat;
  • palette-v7: import static org.assertj.android.palette.v7.api.Assertions.assertThat;

Extending

The provided assertions have also been designed to be extended for any custom controls you have developed.

public class CustomLayout extends LinearLayout {

public int getBehavior() {

  /* ... */

}
 
}

Use the following pattern to set up your assertions.

public class CustomLayoutAssert extends AbstractLinearLayoutAssert<CustomLayoutAssert, CustomLayout> {

public static CustomLayoutAssert assertThat(CustomLayout actual) {

  return new CustomLayoutAssert(actual);

}

 public CustomLayoutAssert(CustomLayout actual) {

  super(actual, CustomLayoutAssert.class);

}

 public CustomLayoutAssert hasSomeBehavior() {

  isNotNull();

  assertThat(actual.getBehavior())

.overridingErrorMessage("Expected some behavior but was doing other behavior.")

.isEqualTo(42)
  return this;

}
 
}

Now static import CustomLayoutAssert.assertThat in your test classes.

For more information about writing custom assertions see the official documentation.

Download

Android module:

androidTestCompile 'com.squareup.assertj:assertj-android:1.2.0'

support-v4 module:

androidTestCompile 'com.squareup.assertj:assertj-android-support-v4:1.2.0'

Google Play Services module:

androidTestCompile 'com.squareup.assertj:assertj-android-play-services:1.2.0'

appcompat-v7 module:

androidTestCompile 'com.squareup.assertj:assertj-android-appcompat-v7:1.2.0'

Design library module:

androidTestCompile 'com.squareup.assertj:assertj-android-design:1.2.0'

mediarouter-v7 module:

androidTestCompile 'com.squareup.assertj:assertj-android-mediarouter-v7:1.2.0'

gridlayout-v7 module:

androidTestCompile 'com.squareup.assertj:assertj-android-gridlayout-v7:1.2.0'

cardview-v7 module:

androidTestCompile 'com.squareup.assertj:assertj-android-cardview-v7:1.2.0'

recyclerview-v7 module:

androidTestCompile 'com.squareup.assertj:assertj-android-recyclerview-v7:1.2.0'

palette-v7 module:

androidTestCompile 'com.squareup.assertj:assertj-android-palette-v7:1.2.0'

Snapshots of the development version are available in Sonatype's snapshots repository.

License

Copyright 2013 Square, Inc.  Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License. You may obtain a copy of the License at
  http://www.apache.org/licenses/LICENSE-2.0  Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 

Resources

An utility library for Android to run actions in background. It handles orientation changes and delegates results to the visible Activity.

An implementation of the SQRL protocol. This library helps to parse, validate and create SQRL messages.

Android Transition animations explanation with examples.

Read RemoteViews information with some black magic.

Simple vertical and horizontal color picker.

This is project contains part of Java Minim audio library which can be used on Android.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes