<dependency>
<groupId>com.google.truth</groupId>
<artifactId>truth</artifactId>
<version>1.1</version>
</dependency>
testImplementation 'com.google.truth:truth:1.1'
import com.google.common.truth.Truth.assertThat;
import org.junit.Test;
public class TruthCoreExampleTest {
@Test
public void testStringEquality() {
String actual = "Hello";
String expected = "Hello";
assertThat(actual).isEqualTo(expected);
}
}