import static com.google.common.truth.Truth.assertThat;
public class ErrorHandlingExample {
public static void main(String[] args) {
int value = -5;
assertThat(value).isGreaterThan(0);
}
}
<dependency>
<groupId>com.google.truth</groupId>
<artifactId>truth</artifactId>
<version>1.0</version>
<scope>test</scope>
</dependency>