Google Truth - makstron/info GitHub Wiki

Overview

Truth is a fluent and flexible open-source testing framework designed to make test assertions and failure messages more readable.

Implementation

Gradle

repositories {
  mavenCentral()
}
dependencies {
  testImplementation "com.google.truth:truth:1.1.3"
}

To use the Java 8 extensions, also include com.google.truth.extensions:truth-java8-extension:1.1.3.

import

import static com.google.common.truth.Truth.assertThat;
import static com.google.common.truth.Truth.assertWithMessage;

Testing with Google Truth Truth