import org.junit.Test; import static com.google.common.truth.Truth.assertThat; public class ExampleTest { @Test public void testStringLength() { String str = "Hello, World!"; assertThat(str).hasLength(13); } }