/truth-android

A set of Truth helpers geared toward testing Android

Primary LanguageJavaApache License 2.0Apache-2.0

truth Android

Build Status codecov

this project inspired by assertj-android.

Examples

Subjects.assertThat(view).isGone();
Subjects.assertThat(view)
    .isGone()
    .sameAsWidth(100)
    .sameAsHeight(200);

Limitations

truth Android is beta now